/* Contenedor Principal */
.accounting-card {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    max-width: 450px; /* Ajusta según el espacio de tu proyecto */
    background-color: #ffffff;
    border: 1px solid #eaebef;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    margin-left: auto; 
    margin-right: 60px;
    padding: 16px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

/* Título y línea separadora */
.title-accouting {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eaebef;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Filas (Celdas) */
.celda {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilos específicos de la primera fila */
.celda:not(.total-value) {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eaebef;
}

.celda label {
    font-size: 12px;
    color: #374151;
    font-weight: 600;
}

/* Inputs con prefijo $ */
.input-group {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    overflow: hidden;
    height: 32px;
    width: 200px; /* Ancho de la caja de texto */
}

.prefix {
    background-color: #f9fafb;
    color: #6b7280;
    font-size: 13px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #d1d5db;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 8px;
    font-size: 13px;
    color: #111827;
}

/* Eliminar flechas del input number */
.input-group input::-webkit-outer-spin-button,
.input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Estilos de la fila azul (Total) */
.total-value {
    background-color: #c0d6fe; /* Color azul claro del fondo */
    padding: 12px 16px;
    border-radius: 6px;
}

.total-value label {
    color: #111827;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Ajustes del input en la fila total */
.group-total {
    border: none; /* Quita el borde gris */
    background-color: #ffffff; /* Fondo blanco completo para el input */
}

.prefix-total {
    background-color: #ede9fe; /* Morado muy claro */
    color: #7b61ff; /* Símbolo morado */
    border-right: none; /* Sin línea divisoria entre el $ y el número */
    font-weight: 600;
}