@charset "UTF-8";
/* Cookie Consent Banner */

#myCookieConsent {
    z-index: 9999;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(103, 103, 103, 0.9);
    color: #fff;
    font-family: 'Gothic A1', sans-serif;
    font-size: 0.9em;
    text-align: center;
    padding: 15px 20px;
    display: none;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}

#myCookieConsent div {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.5;
    padding-top: 10px;
}

#myCookieConsent a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

#myCookieConsent a:hover {
    color: #f58648;
}

/* Consent Button */
#myCookieConsent a#cookieButton {
    display: inline-block;
    background: #fff;
    color: #676767;
    font-size: 0.9em;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 10px;
    margin-top: 10px;
    float: right;
    transition: all 0.3s ease;
}

#myCookieConsent a#cookieButton:hover {
    background: #f58648;
    color: #fff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    #myCookieConsent {
        font-size: 0.85em;
        text-align: left;
        padding: 15px;
    }

    #myCookieConsent div {
        width: 100%;
        padding-top: 5px;
    }

    #myCookieConsent a#cookieButton {
        float: none;
        display: block;
        margin: 15px auto 0 auto;
        text-align: center;
    }
}
