

.action-btn {
    padding: 12px 8px;
    border: 2px solid;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.action-btn.active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.action-btn.rendez-vous {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e40af;
}

.action-btn.rendez-vous:hover,
.action-btn.rendez-vous.active {
    background: #3b82f6;
    color: white;
}

.action-btn.relance {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.action-btn.relance:hover,
.action-btn.relance.active {
    background: #f59e0b;
    color: white;
}

.action-btn.nouveau-dossier {
    background: #d1fae5;
    border-color: #10b981;
    color: #047857;
}

.action-btn.nouveau-dossier:hover,
.action-btn.nouveau-dossier.active {
    background: #10b981;
    color: white;
}

.action-btn.classifier {
    background: #e0f2fe;
    border-color: #0891b2;
    color: #0c4a6e;
}

.action-btn.classifier:hover,
.action-btn.classifier.active {
    background: #0891b2;
    color: white;
}

.action-btn.relancer {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

.action-btn.relancer:hover,
.action-btn.relancer.active {
    background: #ef4444;
    color: white;
}

.action-btn.important {
    background: #fef3c7;
    border-color: #fbbf24;
    color: #92400e;
}

.action-btn.important:hover,
.action-btn.important.active {
    background: #fbbf24;
    color: white;
}


