.metric-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e1e3e4;
}

.data-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e1e3e4;
    padding: 16px;
    transition: all 0.3s ease;
}

.data-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

th {
    background-color: #f3f4f5;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e1e3e4;
}

td {
    padding: 12px;
    border-bottom: 1px solid #e1e3e4;
}

tr:hover td {
    background-color: #fafbfc;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background-color: #a3f69c;
    color: #002204;
}

.status-inactive {
    background-color: #e1e3e4;
    color: #40493d;
}

[x-cloak] {
    display: none !important;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    font-size: 24px !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    word-wrap: normal !important;
    white-space: nowrap !important;
    direction: ltr !important;
    -webkit-font-smoothing: antialiased !important;
    text-transform: none !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: #40493d;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.menu-link:hover {
    background-color: #e1e3e4;
    color: #191c1d;
}

.menu-link .material-symbols-outlined {
    flex-shrink: 0 !important;
    width: 24px !important;
    text-align: center !important;
}

.menu-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}