﻿
#ribbon {
    width: 100%;
    height: 40px;
    background-color: #4CAF50; /* your preferred color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    border-bottom: solid 1px #444444;
}

#ribbon .ribbon-left, #ribbon .ribbon-right {
    display: flex;
    align-items: center;
}

#ribbon .logo {
    height: 30px;
}

#ribbon .slogan {
    margin-left: 10px;
    font-weight: bold;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
}

#ribbon .text-left, #ribbon .text-right {
    margin-left: 10px;
}

#ribbon .close {
    cursor: pointer;
    margin-left: 10px;
    height: 20px;
}

#ribbon .ribbon-link {
    margin-left: 10px;
    color: black;
    font-size: 16px;
    text-decoration: underline !important;
    font-weight: bold;
}

    #ribbon .ribbon-link:visited,
    #ribbon .ribbon-link:hover,
    #ribbon .ribbon-link:focus {
        text-decoration: underline !important;
    }



	
@media only screen and (max-width: 600px) {
    #ribbon .ribbon {
        flex-direction: column;
        height: auto;
        padding: 5px;
    }

    #ribbon .ribbon-left, #ribbon .ribbon-right {
        margin-bottom: 5px;
    }

    #ribbon .slogan, #ribbon .text-left, #ribbon .text-right {
        font-size: 12px;
    }

    #ribbon .logo, #ribbon .close {
        height: 20px;
    }
}
