/* ============================================
   DAILY STATUS UPDATE WIDGET - DARK THEME
   "Who Missed Their Daily Status Update" section
   ============================================ */

/* Widget Container */
[data-theme="dark"] .daily-status-widget {
    background: rgba(30, 35, 58, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

/* Widget Header */
[data-theme="dark"] .daily-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

[data-theme="dark"] .daily-status-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

[data-theme="dark"] .daily-status-title .warning-icon {
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 16px;
}

/* Month Navigation */
[data-theme="dark"] .month-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

[data-theme="dark"] .month-nav-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s;
}

[data-theme="dark"] .month-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .current-month {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

/* Alert Message */
[data-theme="dark"] .status-alert {
    background: rgba(251, 146, 60, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

[data-theme="dark"] .status-alert .alert-icon {
    color: #fb923c;
    font-size: 16px;
    flex-shrink: 0;
}

[data-theme="dark"] .status-alert p {
    margin: 0;
    color: #fb923c;
    font-size: 13px;
    line-height: 1.5;
}

/* Employee List */
[data-theme="dark"] .employee-status-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Employee Item */
[data-theme="dark"] .employee-status-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s;
}

[data-theme="dark"] .employee-status-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Employee Avatar */
[data-theme="dark"] .employee-avatar {
    position: relative;
    flex-shrink: 0;
}

[data-theme="dark"] .avatar-circle {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .status-indicator {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #fb923c;
    border: 2px solid rgba(30, 35, 58, 0.6);
    border-radius: 50%;
}

/* Employee Info */
[data-theme="dark"] .employee-info {
    flex: 1;
    min-width: 0;
}

[data-theme="dark"] .employee-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

[data-theme="dark"] .missed-dates {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

[data-theme="dark"] .calendar-icon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-right: 4px;
}

/* Date Badges */
[data-theme="dark"] .date-badge {
    background: rgba(251, 146, 60, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fb923c;
    white-space: nowrap;
}

[data-theme="dark"] .more-badge {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

/* Empty State */
[data-theme="dark"] .empty-status {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    [data-theme="dark"] .daily-status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    [data-theme="dark"] .month-navigation {
        width: 100%;
        justify-content: space-between;
    }

    [data-theme="dark"] .missed-dates {
        flex-direction: column;
        align-items: flex-start;
    }
}