.dz-form {
    max-width: 480px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    direction: rtl;
    text-align: right;
    font-family: Tahoma, Arial, sans-serif;
}
.dz-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    font-size: 14px;
}
.dz-form input[type="text"],
.dz-form input[type="email"],
.dz-form input[type="password"],
.dz-form input[type="number"],
.dz-form input[type="file"],
.dz-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 4px;
}
.dz-form button {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
}
.dz-form button:hover {
    background: #135e96;
}
.dz-error {
    color: #b3261e;
    background: #fbeaea;
    padding: 8px 12px;
    border-radius: 4px;
}
.dz-success {
    color: #1e6b34;
    background: #eaf7ed;
    padding: 8px 12px;
    border-radius: 4px;
}
.dz-table {
    width: 100%;
    border-collapse: collapse;
    direction: rtl;
    text-align: right;
    font-family: Tahoma, Arial, sans-serif;
}
.dz-table th, .dz-table td {
    border: 1px solid #e0e0e0;
    padding: 8px 10px;
    font-size: 14px;
}
.dz-table th {
    background: #f5f5f5;
}
.dz-status-pending { color: #a17c00; }
.dz-status-confirmed { color: #b3261e; font-weight: bold; }
.dz-status-rejected { color: #666; }

/* لوحة الطلبات (سائق/عميل) */
.dz-order-list {
    direction: rtl;
    text-align: right;
    font-family: Tahoma, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
    margin: 16px auto;
}
.dz-order-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 16px;
    background: #fff;
    transition: opacity .2s ease;
}
.dz-order-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 13px;
    color: #666;
}
.dz-order-city {
    background: #eef3f8;
    color: #2271b1;
    padding: 2px 10px;
    border-radius: 999px;
    font-weight: bold;
}
.dz-order-route { margin: 6px 0; font-size: 15px; }
.dz-order-notes { color: #666; font-size: 13px; margin: 4px 0; }
.dz-order-customer { font-size: 13px; color: #444; margin: 4px 0 10px; }
.dz-order-driver { font-size: 14px; margin-top: 8px; }
.dz-order-driver-pending { color: #a17c00; }
.dz-order-actions { display: flex; gap: 8px; margin-top: 10px; }
.dz-order-actions .dz-btn { padding: 8px 16px; font-size: 14px; }
.dz-loading, .dz-empty { color: #777; text-align: center; padding: 20px; }
.dz-status-new { color: #a17c00; }
.dz-status-accepted { color: #1e6b34; font-weight: bold; }
.dz-status-in_progress { color: #2271b1; font-weight: bold; }
.dz-status-delivered { color: #1e6b34; }
.dz-status-cancelled { color: #b3261e; }
