body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
}

/* RTL support for table cells */
table td, table th {
    text-align: right !important;
}

/* Status badge styles */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-in-progress {
    background-color: #BFDBFE;
    color: #1E40AF;
}
.status-completed {
    background-color: #D1FAE5;
    color: #065F46;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-blue-50 {
    background-color: #f0f9ff;
}
/* Textarea for notes */
.note-textarea {
    min-height: 80px;
    min-width: 300px;
    resize: vertical;
}
/* Responsive table */
@media (max-width: 640px) {
    table {
        display: block;
        overflow-x: auto;
    }
}