/* Styles For banner and branding*/

.drts-cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1c1c1c;
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-family: sans-serif;
    font-size: 14px;
    z-index: 9999;
    max-width: 320px;
}

.drts-cookie-banner.hidden {
    display: none;
}

.drts-cookie-banner button {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 6px 12px;
    margin-top: 8px;
    cursor: pointer;
    border-radius: 4px;
}

#drts-cookie-consent #drts-decline-cookies {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    margin-left: 8px;
    border-radius: 4px;
    cursor: pointer;
}


.drts-cookie-banner a {
    color: #4caf50;
    text-decoration: underline;
}

.drts-cookie-banner a:hover {
    color: #81c784;
    text-decoration: none;
}

.drts-brand {
    display: block;
    margin-top: 8px;
    text-align: right;
    font-size: 10px;
    color: #f2f3f3;
}

/* Animation of the banner */
@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInSlideUp 0.6s ease-out forwards;
}