#dc-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #242424;
    color: #fff;
    padding: 1em 1.5em;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

#dc-cookie-message {
    flex: 1 1 60%;
    margin: 0;
    padding-right: 1em;
}

#dc-cookie-banner button {
    background: #0073aa;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    padding: 0.5em 1.2em;
    margin-left: 0.5em;
    transition: background-color 0.2s ease-in-out;
}

#dc-cookie-banner button:hover,
#dc-cookie-banner button:focus {
    background-color: #005177;
    outline: none;
}

#dc-cookie-accept {
    background-color: #28a745;
}

#dc-cookie-accept:hover,
#dc-cookie-accept:focus {
    background-color: #1e7e34;
}

#dc-cookie-deny {
    background-color: #dc3545;
}

#dc-cookie-deny:hover,
#dc-cookie-deny:focus {
    background-color: #b02a37;
}

.hidden {
    display: none !important;
}
