﻿#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

    .cookie-consent-text p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }

    .cookie-consent-text a {
        color: #3498db;
        text-decoration: underline;
    }

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-consent-accept {
    background-color: #27ae60;
    color: white;
}

    .cookie-consent-accept:hover {
        background-color: #229954;
    }

.cookie-consent-decline {
    background-color: #95a5a6;
    color: white;
}

    .cookie-consent-decline:hover {
        background-color: #7f8c8d;
    }

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
