#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #111111;
    border-top: 2px solid #ddc19a;
    padding: 14px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

#cookie-consent-banner p {
    margin: 0;
    color: #cccccc;
    font-size: 13px;
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
}

#cookie-consent-banner a {
    color: #ddc19a;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-accept-btn {
    background: #ddc19a;
    color: #111111;
    border: none;
    padding: 8px 22px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    border-radius: 3px;
}

#cookie-decline-btn {
    background: transparent;
    color: #cccccc;
    border: 1px solid #555555;
    padding: 8px 22px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    border-radius: 3px;
}

@media (max-width: 576px) {
    #cookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
    }

    .cookie-consent-buttons {
        width: 100%;
    }

    #cookie-accept-btn,
    #cookie-decline-btn {
        flex: 1;
        text-align: center;
    }
}
