#show-cookies-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99999; /* Ensure this is higher than the footer */
    background-color: #ED9600;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: opacity 0.2s;
}

#cookies-consent {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    background-color: #3d3d3d;
    z-index: 10000;
}

#cookies-consent span {
    color: #ccc;
    font-size: 16px;
    flex: 1;
    text-align: left;
    word-spacing: normal;
    white-space: normal;
}

#cookies-consent span a {
    color: #ED9600;
    text-decoration: underline;
}

#cookies-consent .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

#cookies-consent .buttons button,
#cookies-consent .buttons a {
    background-color: #ED9600;
    border: transparent;
    color: white;
    white-space: nowrap;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
}

#cookies-consent .buttons button:hover,
#cookies-consent .buttons a:hover {
    background-color: #BA7600;
}

#cookies-consent .cc-link {
    margin-left: 0;
}

.cookie-btn-secondary {
    background-color: #5a5a5a !important;
    border: 1px solid #4a4a4a !important;
    color: #f7f7f7 !important;
}

.cookie-btn-secondary:hover {
    background-color: #4a4a4a !important;
}

@media (max-width: 767px) {
    #cookies-consent {
        flex-direction: column;
        padding: 12px 10%;
    }
}
