/* Cookie Modal Styles */
.cookie-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 10000;
}

.cookie-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.cookie-modal-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cookie-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modal-accept {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-accept:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-modal-decline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-decline:hover {
    border-color: #999;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .cookie-modal-title {
        font-size: 20px;
    }
    
    .cookie-modal-text {
        font-size: 14px;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .btn-modal-accept,
    .btn-modal-decline {
        width: 100%;
    }
}
