
    
/*******ccokies****/



#cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2147483647;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.cookie-modal-content {
    background: white;
    color: #212529;
    padding: 28px;
    border-radius: 14px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cookie-modal-content h3 {
    font-weight: 700;
    margin-bottom: 16px;
    color: #0d6efd;
    font-size: 1.4rem;
}

.cookie-modal-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
    color: #495057;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

#accept-cookies {
    background: #0d6efd;
    color: white;
}

#deny-cookies {
    background: #6c757d;
    color: white;
}



