.shah-dashboard-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.shah-dashboard-sidebar {
    width: 250px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
}

.shah-dashboard-sidebar ul {
    list-style: none;
    padding: 0;
}

.shah-dashboard-sidebar li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.shah-dashboard-sidebar li.active a {
    font-weight: bold;
    color: #0073aa;
}

.shah-dashboard-content {
    flex: 1;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.shah-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.shah-item-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.shah-table {
    width: 100%;
    border-collapse: collapse;
}

.shah-table th, .shah-table td {
    padding: 10px;
    border: 1px solid #eee;
    text-align: left;
}
