/* Styles pour les badges de statut */
.cotation-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem; /* Réduit de 0.875rem à 0.75rem */
    font-weight: 500;
}

/* Style pour les boutons de téléchargement */
.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: #EFF6FF;
    color: #2563EB;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    line-height: 1.2;
}

.download-btn span {
    font-size: 0.5rem;
}

.download-btn:hover {
    background-color: #DBEAFE;
}

/* Styles pour les boutons d'action */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.action-view {
    background-color: #F3F4F6;
    color: #374151;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
}

.action-view:hover {
    background-color: #E5E7EB;
}

.action-accept {
    background-color: #ECFDF5;
    color: #10B981;
}

.action-accept:hover {
    background-color: #D1FAE5;
}

.action-reject {
    background-color: #FEF2F2;
    color: #EF4444;
}

.action-reject:hover {
    background-color: #FEE2E2;
}

.eye-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 0.375rem;
    background-color: #F3F4F6;
    color: #6B7280;
    transition: all 0.2s;
}

.eye-icon:hover {
    background-color: #E5E7EB;
}
