@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4F46E5;
    /* Indigo */
    --text-color: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F3F4F6;
    --sidebar-width: 260px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
}

/* Sidebar */
.is-sidebar-menu {
    width: var(--sidebar-width);
    background-color: #FFFFFF;
    border-right: 1px solid #E5E7EB;
    padding: 2rem 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    /* Ensure sidebar is above main content */
    top: 0;
    left: 0;
}

.menu-label {
    color: #9CA3AF;
    /* Gray 400 */
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.menu-list a {
    color: var(--text-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.menu-list a:hover {
    background-color: #F9FAFB;
    color: var(--primary-color);
}

.menu-list a.is-active {
    background-color: #EEF2FF;
    /* Indigo 50 */
    color: var(--primary-color);
    font-weight: 600;
}

/* Main Content Area */
.main-content {
    margin-left: var(--sidebar-width);
    padding: 2rem;
    min-height: 100vh;
}

/* Navbar/Header */
.navbar {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    border: none;
}

.navbar-brand {
    display: none;
    /* Hide brand in main content, maybe keep in sidebar if needed */
}

/* Cards & Boxes */
.box,
.card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
}

.title {
    color: #111827;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Table */
.table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.table th {
    border: none;
    border-bottom: 1px solid #E5E7EB;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.table td {
    border: none;
    border-bottom: 1px solid #F3F4F6;
    padding: 1rem;
    vertical-align: middle;
    color: var(--text-color);
    font-weight: 500;
}

.table tr:last-child td {
    border-bottom: none;
}

/* Tags/Badges */
.tag {
    border-radius: 9999px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.25em 0.75em;
    height: auto;
}

.tag.is-success {
    background-color: #D1FAE5;
    color: #065F46;
}

.tag.is-warning {
    background-color: #FEF3C7;
    color: #92400E;
}

.tag.is-danger {
    background-color: #FEE2E2;
    color: #991B1B;
}

/* Utilities */
.has-text-muted {
    color: var(--text-light);
}