/* Estilos para el Modal de Detalles de Rubro */
.rubro-details-modal {
    width: min(550px, calc(100vw - 36px));
    max-height: 90vh;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rubro-details-modal .modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px; /* Espacio para scrollbar */
}

.rubro-details-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.rubro-details-modal .modal-body::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.rubro-details-modal .modal-body::-webkit-scrollbar-track {
    background-color: transparent;
}

.rubro-details-title {
    font-size: 1.6em;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 8px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.rubro-details-category {
    font-size: 0.9em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.rubro-details-prices {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.rubro-details-prices p {
    margin: 5px 0;
    font-size: 0.95em;
    color: #334155;
}

.rubro-details-prices strong {
    color: #1e293b;
}

.rubro-details-composition {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rubro-details-section h4 {
    font-size: 1.1em;
    color: #3b82f6;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #93c5fd;
}

.rubro-details-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rubro-details-section li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9em;
    color: #475569;
}

.rubro-details-section li:last-child {
    border-bottom: none;
}

.rubro-details-section li span:first-child {
    flex: 1;
    margin-right: 10px;
}

.rubro-details-section li .qty {
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

.rubro-details-empty {
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    margin-top: 20px;
}

/* Dark Mode */
body.dark-mode .rubro-details-title {
    color: #f8fafc;
    border-bottom-color: #a78bfa;
}
body.dark-mode .rubro-details-category { color: #94a3b8; }
body.dark-mode .rubro-details-prices { background: #1e293b; border-color: #334155; }
body.dark-mode .rubro-details-prices p { color: #cbd5e1; }
body.dark-mode .rubro-details-prices strong { color: #f1f5f9; }
body.dark-mode .rubro-details-section h4 { color: #60a5fa; border-bottom-color: #60a5fa; }
body.dark-mode .rubro-details-section li { color: #cbd5e1; border-bottom-color: #334155; }
body.dark-mode .rubro-details-section li .qty { color: #f1f5f9; }
body.dark-mode .rubro-details-empty { color: #94a3b8; }