/* Bouton Ajouter au devis */
.add-to-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 50px;
}

.add-to-quote-btn-list {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 0.875rem;
}

/* Modale */
.quote-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quote-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.quote-modal-close:hover,
.quote-modal-close:focus {
    color: #000;
}

.quote-modal-icon {
    margin-bottom: 20px;
}

.quote-modal-icon i {
    font-size: 64px;
    color: #28a745;
}

.quote-modal-content h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
}

.quote-modal-content p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.quote-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-modal-actions .btn {
    min-width: 150px;
}

/* Responsive */
@media (max-width: 576px) {
    .quote-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .quote-modal-actions {
        flex-direction: column;
    }
    
    .quote-modal-actions .btn {
        width: 100%;
    }
}