/* ======================== Cookies ======================== */

#cookie-modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.cookie-modal-content {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 15px;
}

.cookie-modal-content p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cookie-modal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.cookie-modal-content a:hover {
    color: var(--secondary-text-color);
}

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

.cookie-buttons button {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 200ms ease;
}

#accept-cookies {
    background-color: var(--accent-color);
    color: white;
}

#accept-cookies:hover {
    background-color: var(--primary-color);
}

#decline-cookies {
    background-color: var(--primary-color);
    color: white;
}

#decline-cookies:hover {
    background-color: var(--accent-color);
}