/**
 * Municipal Complaints Manager - Frontend RTL Styles
 * Minimal overrides - relies on UIkit classes from YOOtheme Pro
 */

.mucm-submit-form-wrapper,
.mucm-lookup-form-wrapper,
.mucm-verify-form-wrapper {
    direction: rtl;
    text-align: right;
}

.mucm-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.mucm-status-badge .uk-icon {
    flex-shrink: 0;
}

.mucm-status-new {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0284c7;
    border: 1px solid #7dd3fc;
}

.mucm-status-under-review {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    border: 1px solid #fbbf24;
}

.mucm-status-in-progress {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.mucm-status-completed {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
    border: 1px solid #6ee7b7;
}

.mucm-status-rejected {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.mucm-status-archived {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #7c3aed;
    border: 1px solid #c4b5fd;
}

.mucm-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.mucm-timeline li {
    padding-right: 30px;
    padding-bottom: 20px;
    position: relative;
}

.mucm-timeline li:before {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2563eb;
}

.mucm-timeline li:after {
    content: '';
    position: absolute;
    right: 5px;
    top: 18px;
    width: 2px;
    height: calc(100% - 18px);
    background: #e5e7eb;
}

.mucm-timeline li:last-child:after {
    display: none;
}

.mucm-notes-list .mucm-note {
    background: #f9fafb;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-right: 3px solid #2563eb;
}

.mucm-activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mucm-activity-list li {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.mucm-activity-list li:last-child {
    border-bottom: none;
}
