/**
 * Panel de detalle y ítems de correlativas
 */

.detail-panel {
    width: 280px;
    flex-shrink: 0;
    background: #0f1628;
    border: 1px solid #1a2744;
    border-radius: 16px;
    padding: 20px;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.detail-panel::-webkit-scrollbar {
    width: 4px;
}

.detail-panel::-webkit-scrollbar-track {
    background: transparent;
}

.detail-panel::-webkit-scrollbar-thumb {
    background: #1e2d45;
    border-radius: 2px;
}

.dp-code {
    font-size: 0.68rem;
    font-family: monospace;
    color: #475569;
}

.dp-name {
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: 4px;
    line-height: 1.3;
}

.dp-meta {
    font-size: 0.78rem;
    color: #475569;
    margin-top: 6px;
}

.dp-grade-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.dp-grade {
    font-size: 2rem;
    font-weight: 800;
}

.dp-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 9px;
    border-radius: 5px;
}

.dp-section {
    margin-top: 18px;
}

.dp-section h4 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #334155;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #1a2744;
}

.dp-item {
    background: #0a0f1e;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: background 0.15s;
    border-left: 3px solid transparent;
}

.dp-item:hover {
    background: #131929;
}

.dp-item .di-code {
    font-size: 0.65rem;
    font-family: monospace;
    color: #475569;
}

.dp-item .di-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-top: 2px;
    line-height: 1.3;
}

.dp-item .di-status {
    font-size: 0.68rem;
    margin-top: 3px;
}

.empty-panel {
    text-align: center;
    padding: 40px 10px;
}

.empty-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.empty-msg {
    color: #334155;
    font-weight: 600;
}

.empty-sub {
    color: #1e2d45;
    font-size: 0.8rem;
    margin-top: 6px;
    line-height: 1.4;
}
