.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: calc(100vh - 80px);
}

.dashboard-sidebar {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
}

.dashboard-sidebar h2 {
    padding: 0 20px;
    margin-bottom: 30px;
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    margin-bottom: 5px;
}

.dashboard-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s;
}

.dashboard-menu a:hover, .dashboard-menu a.active {
    background-color: #34495e;
    border-left: 4px solid #3498db;
}

.dashboard-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.dashboard-content {
    background-color: #f5f7fa;
    overflow-y: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-title h1 {
    margin: 0;
    font-size: 28px;
}

.dashboard-actions {
    display: flex;
    gap: 10px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dashboard-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dashboard-card-title {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

.dashboard-card-value {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
}

.dashboard-card-footer {
    font-size: 13px;
    display: flex;
    align-items: center;
}

.dashboard-card-footer.positive {
    color: #2ecc71;
}

.dashboard-card-footer.negative {
    color: #e74c3c;
}

.dashboard-card-footer i {
    margin-right: 5px;
}

.dashboard-tabs {
    margin-bottom: 20px;
}

.dashboard-tab-buttons {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.dashboard-tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    cursor: pointer;
    color: #7f8c8d;
}

.dashboard-tab-button.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.dashboard-tab-content {
    display: none;
}

.dashboard-tab-content.active {
    display: block;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.dashboard-table th, .dashboard-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dashboard-table th {
    font-weight: 600;
    color: #7f8c8d;
    background-color: #f9f9f9;
}

.dashboard-table tr:hover {
    background-color: #f5f7fa;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background-color: #e8f5e9;
    color: #2ecc71;
}

.status-badge.pending {
    background-color: #fff8e1;
    color: #f39c12;
}

.status-badge.shipped {
    background-color: #e3f2fd;
    color: #3498db;
}

.status-badge.delivered {
    background-color: #e8f5e9;
    color: #27ae60;
}

.status-badge.cancelled {
    background-color: #ffebee;
    color: #e74c3c;
}

.dashboard-section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.dashboard-section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.dashboard-section-action {
    font-size: 14px;
    color: #3498db;
    cursor: pointer;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-chart {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dashboard-chart-header {
    margin-bottom: 20px;
}

.dashboard-chart-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.dashboard-chart-container {
    height: 300px;
}