.dashboard {
    display: flex;
    background: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    width: 100%;
}

/* Sidebar */
.sidebar {
    background: white;
    padding: 30px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.user-avatar {
    font-size: 48px;
    margin-bottom: 15px;
}

.user-profile h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.user-profile p {
    color: #666;
    font-size: 14px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.menu-item {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.menu-item:hover,
.menu-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.sidebar-footer .btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

/* Dashboard Content */
.dashboard-content {
    padding: 40px;
}

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

.dashboard-section h2 {
    margin-bottom: 20px;
    color: #667eea;
    font-size: 28px;
}

.dashboard-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.stat-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #667eea;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

/* Getting Started */
.getting-started {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.getting-started h2 {
    margin-bottom: 30px;
    color: #667eea;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
}

/* Features Highlight */
.features-highlight {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features-highlight h2 {
    margin-bottom: 30px;
    color: #667eea;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
}

.feature-icon {
    font-size: 32px;
    min-width: 50px;
}

.feature-list-item h4 {
    margin-bottom: 5px;
    color: #667eea;
}

.feature-list-item p {
    color: #666;
}

@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-bottom: 20px;
    }

    .dashboard-content {
        padding: 20px;
    }
}