.monjaz-employee-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    direction: rtl;
    text-align: right;
}

.monjaz-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.monjaz-dashboard-header h2 {
    margin: 0;
    color: #333;
}

.monjaz-week-hours {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
}

.monjaz-work-timer {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
}

.monjaz-work-timer h3 {
    margin-top: 0;
    color: #333;
}

#monjaz-timer-display {
    font-size: 48px;
    font-weight: bold;
    color: #007cba;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
}

.monjaz-timer-controls {
    margin: 20px 0;
}

.monjaz-timer-controls .button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
}

.monjaz-activity-indicator {
    margin-top: 15px;
    color: #666;
}

.monjaz-tasks-list {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.monjaz-tasks-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.monjaz-tasks-table th,
.monjaz-tasks-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.monjaz-tasks-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.monjaz-priority {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.monjaz-priority-low {
    background: #d4edda;
    color: #155724;
}

.monjaz-priority-medium {
    background: #fff3cd;
    color: #856404;
}

.monjaz-priority-high {
    background: #f8d7da;
    color: #721c24;
}

.monjaz-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.monjaz-status-active {
    background: #d4edda;
    color: #155724;
}

.monjaz-status-pending {
    background: #fff3cd;
    color: #856404;
}

.monjaz-status-completed {
    background: #cce7ff;
    color: #004085;
}

.monjaz-work-timer-widget {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    direction: rtl;
}

/* استجابة للأجهزة المحمولة */
@media (max-width: 768px) {
    .monjaz-dashboard-header {
        flex-direction: column;
        gap: 15px;
    }
    
    #monjaz-timer-display {
        font-size: 32px;
    }
    
    .monjaz-tasks-table {
        font-size: 14px;
    }
    
    .monjaz-tasks-table th,
    .monjaz-tasks-table td {
        padding: 8px;
    }
}