.dashboard-header {
    background: linear-gradient(135deg, #f1f7ff 0%, #ffffff 100%);
    border: 1px solid rgba(74, 144, 226, 0.15);
    border-left: 5px solid #4a90e2;
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.08);
}

.dashboard-header h1,
.dashboard-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d4059;
    margin-bottom: 5px;
}

.dashboard-header p {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.action-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    border-top: 4px solid #4a90e2;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.action-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #4a90e2 0%, #5cb8b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.action-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d4059;
}

.recent-activity {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.recent-activity h4 {
    color: #2d4059;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-activity h4 i {
    color: #4a90e2;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-item {
    padding: 15px 0;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 15px;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90e2;
}

.activity-content h4 {
    margin: 0;
    font-size: 1rem;
    color: #2d4059;
}

.activity-content p {
    margin: 5px 0 0 0;
    color: #718096;
    font-size: 0.9rem;
}

.activity-time {
    margin-left: auto;
    color: #a0aec0;
    font-size: 0.8rem;
}

/* Progress bars */
.progress-container {
    margin: 20px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #4a5568;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: #edf2f7;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #4a90e2, #5cb8b2);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Calendar widget */
.calendar-widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h5 {
    color: #2d4059;
    font-weight: 700;
    margin: 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-day {
    text-align: center;
    padding: 10px;
    font-weight: 700;
    color: #4a90e2;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-date {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
}

.calendar-date:hover {
    background: #e8f0fe;
    color: #4a90e2;
}

.calendar-date.today {
    background: linear-gradient(135deg, #4a90e2 0%, #5cb8b2 100%);
    color: white;
}

.calendar-date.event {
    background: #e8f0fe;
    color: #4a90e2;
    font-weight: 700;
    position: relative;
}

.calendar-date.event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #e88a8a;
    border-radius: 50%;
}