/* ==========================================
   Dynasty 8 - Boutons
   ========================================== */

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    min-width: 200px;
    flex: 0 0 auto;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--text-secondary);
    color: var(--text-white);
    border: 1px solid var(--text-secondary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-remove:hover {
    background: #c82333;
    transform: scale(1.05);
}
