/**
 * Detail
 * 
 * Styly pro detailní zobrazení entit (uživatelé, zařízení, klienti, atd.)
 */

/* Kontejner detailu */
.detail-uzivatel,
.detail-zarizeni,
.detail-klient {
    padding: 10px 0;
}

/* Sekce v detailu */
.detail-sekce {
    margin-bottom: 24px;
}

.detail-sekce:last-child {
    margin-bottom: 0;
}

.detail-sekce h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

/* Grid pro položky */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Jednotlivá položka */
.detail-polozka {
    font-size: 14px;
}

/* Popisek položky */
.detail-label {
    color: var(--color-text-muted);
}

/* ==================== UTILITY TŘÍDY ==================== */

/* Zarovnání textu */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Barvy textu */
.text-primary {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-text-muted);
}

/* Odkazy */
.link-primary {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.link-primary:hover {
    text-decoration: underline;
}

/* Prázdný stav tabulky */
.table-empty {
    text-align: center;
    color: #999;
}

/* Placeholder pro budoucí obsah */
.placeholder-box {
    height: 200px;
    background: var(--color-bg-content);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 8px;
}

.placeholder-box .icon {
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

/* Margin utility třídy */
.mt-24 {
    margin-top: 24px;
}
