/* Dashboard Widgets */
.dashboard-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.25rem;
}

.widget-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: none;
    height: 100%;
    background-image: linear-gradient(to right bottom, #ffffff, #f8fafc);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

/* Pending Tasks Styles */
.task-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.task-item:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.task-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Activity Feed Styles */
.activity-list {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid #f1f5f9;
    margin-left: 0.5rem;
}

.activity-item {
    position: relative;
    margin-bottom: 1.75rem;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-dot {
    position: absolute;
    left: -1.95rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #e2e8f0;
}

.activity-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #334155;
}

.activity-time {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}