/* Cookie consent banner styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none;
}

.cookie-consent p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.cookie-consent-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
}

.cookie-accept {
    background-color: var(--success-green);
    color: white;
}

.cookie-decline {
    background-color: #f1f1f1;
    color: #333;
}
