/* Admin panel custom styles — Tailwind CDN handles utilities */

/* Sidebar transitions */
.sidebar-link {
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Table row hover */
.data-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Inline editable cell */
.editable-cell:focus {
    outline: 2px solid #6366f1;
    border-radius: 4px;
    background: #fafafa;
}

/* YAML editor textarea */
.yaml-editor {
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', ui-monospace, monospace;
    font-size: 13px;
    line-height: 1.6;
    tab-size: 2;
}

/* Status badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

/* Toast notification */
#toast-container {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Feature limits grid */
.limits-grid th,
.limits-grid td {
    min-width: 110px;
    white-space: nowrap;
}

.limits-grid td input[type="number"] {
    width: 80px;
    text-align: center;
}
