.dashboard-container {
    padding: 50px 0;
}
.welcome-section {
    background: var(--bizgrow-base);
    color: white;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}
.welcome-section h1 {
    margin: 0;
    font-size: 28px;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
}
.card-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.card-header i {
    margin-right: 10px;
    color: var(--bizgrow-base);
}
.card-body {
    padding: 20px;
}
.user-info p {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.user-info p span:first-child {
    font-weight: 600;
    color: #666;
}
.btn-update {
    display: inline-block;
    background: var(--bizgrow-base);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 15px;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-update:hover {
    background: var(--bizgrow-dark);
    color: white;
}
.quick-actions {
    display: grid;
    gap: 10px;
}
.quick-actions a {
    display: block;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid var(--bizgrow-base);
}
.quick-actions a:hover {
    background: #e9ecef;
    padding-left: 20px;
}
.recent-activity {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recent-activity li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.recent-activity li:last-child {
    border-bottom: none;
}
.recent-activity i {
    margin-right: 10px;
    color: var(--bizgrow-base);
}
.activity-time {
    margin-left: auto;
    font-size: 12px;
    color: #666;
}
