/* ==================== */
/*  ESTILOS EXCLUSIVOS DEL PRESUPUESTADOR MANUAL */
/* ==================== */

.presupuesto-manual-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.presupuesto-manual-container h2 {
    text-align: center;
    color: #28a745;
    margin-bottom: 5px;
}

.gpm-descripcion {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.gpm-ayuda {
    font-size: 12px;
    color: #28a745;
    margin-top: 5px;
    margin-bottom: 10px;
}

.btn-secundario {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-secundario:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Estilos para productos manuales */
.producto-manual {
    color: #28a745;
    font-style: italic;
}

.producto-manual-icon {
    font-size: 14px;
    margin-right: 5px;
}

/* Wrapper de cantidad y precio */
.cantidad-precio-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5px;
}

.campo-cantidad-input,
.campo-precio-input,
.campo-precio-fijo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
}

.campo-cantidad-input span,
.campo-precio-input span,
.campo-precio-fijo span {
    font-size: 12px;
    color: #666;
}

.cantidad-producto {
    width: 70px !important;
    text-align: center;
    padding: 6px !important;
    font-size: 14px;
    margin: 0 !important;
}

.precio-manual {
    width: 100px !important;
    text-align: right;
    padding: 6px !important;
    font-size: 14px;
    margin: 0 !important;
}

.campo-subtotal {
    background: #e7f3ff;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
}

.campo-subtotal span {
    color: #0073aa;
}

.campo-subtotal .subtotal-valor {
    font-size: 14px;
    font-weight: bold;
    color: #005a8c;
}

/* Select2 personalizado para productos manuales */
.select2-results__option--highlighted[aria-selected] {
    background-color: #28a745 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cantidad-precio-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .campo-cantidad-input,
    .campo-precio-input,
    .campo-precio-fijo,
    .campo-subtotal {
        justify-content: space-between;
    }
    
    .btn-secundario {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .form-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* Impresión */
@media print {
    .presupuesto-manual-container,
    .acciones-post,
    .modal {
        display: none !important;
    }
    
    .gpm-presupuesto .presupuesto-info h1 {
        font-size: 18pt !important;
    }
}