/* Estilos básicos de formularios */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

label {
    font-weight: 600;
}

input, select, textarea {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.btn-primary {
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
}

.btn-secondary {
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
}

/* Wizard Steps Styles */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.wizard-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.wizard-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.wizard-step.completed:not(:last-child)::after {
    background: #10b981;
}

.wizard-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.wizard-step.active .step-number {
    background: #3b82f6;
    color: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.wizard-step.completed .step-number {
    background: #10b981;
    color: white;
}

.wizard-step .step-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

.wizard-step.active .step-label {
    color: #3b82f6;
    font-weight: 600;
}

.wizard-step.completed .step-label {
    color: #10b981;
}

.wizard-step-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sale-product-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
}

.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.form-check-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.form-check-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

