
/* Page Container */
.page-container[data-v-2f7f847e] {
  min-height: 100vh;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  padding: 20px;
}

/* Header Styles */
.page-header[data-v-2f7f847e] {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}
.breadcrumb-wrapper[data-v-2f7f847e] {
  margin-bottom: 20px;
}
.breadcrumb-nav[data-v-2f7f847e] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb-link[data-v-2f7f847e] {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.breadcrumb-link[data-v-2f7f847e]:hover {
  color: #fff;
}
.breadcrumb-separator[data-v-2f7f847e] {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-current[data-v-2f7f847e] {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.page-title-wrapper[data-v-2f7f847e] {
  text-align: right;
}
.page-title[data-v-2f7f847e] {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.page-subtitle[data-v-2f7f847e] {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin: 0;
}

/* Content Wrapper */
.content-wrapper[data-v-2f7f847e] {
  min-height: 400px;
}

/* Table Card */
.table-card[data-v-2f7f847e] {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.table-header[data-v-2f7f847e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
  border-bottom: 2px solid #fecaca;
}
.table-title[data-v-2f7f847e] {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}
.table-title i[data-v-2f7f847e] {
  font-size: 28px;
  color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  padding: 10px;
  border-radius: 12px;
}
.table-info[data-v-2f7f847e] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-refresh[data-v-2f7f847e] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #ef4444;
  border: 2px solid #ef4444;
  transition: all 0.3s ease;
}
.btn-refresh[data-v-2f7f847e]:hover:not(:disabled) {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.btn-refresh[data-v-2f7f847e]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-refresh i[data-v-2f7f847e] {
  font-size: 16px;
}
.records-count[data-v-2f7f847e] {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.table-responsive[data-v-2f7f847e] {
  /* overflow-x: auto; */
  direction: rtl;
}

/* Modern Table */
.modern-table[data-v-2f7f847e] {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.modern-table thead[data-v-2f7f847e] {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}
.modern-table thead th[data-v-2f7f847e] {
  color: #fff;
  padding: 20px 16px;
  text-align: right;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}
.modern-table thead th[data-v-2f7f847e]:first-child {
  border-radius: 0 12px 0 0;
}
.modern-table thead th[data-v-2f7f847e]:last-child {
  border-radius: 12px 0 0 0;
}
.modern-table thead th.th-id[data-v-2f7f847e] {
  width: 70px;
  text-align: center;
}
.modern-table thead th.th-actions[data-v-2f7f847e] {
  width: 200px;
  text-align: center;
}
.modern-table tbody tr[data-v-2f7f847e] {
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modern-table tbody tr[data-v-2f7f847e]:nth-child(even) {
  background-color: #fefafa;
}
.modern-table tbody tr[data-v-2f7f847e]:hover {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  transform: scale(1.005);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
}
.modern-table tbody td[data-v-2f7f847e] {
  padding: 18px 16px;
  text-align: right;
  color: #475569;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
}
.modern-table tbody tr:last-child td[data-v-2f7f847e] {
  border-bottom: none;
}
.modern-table tbody td.td-id[data-v-2f7f847e] {
  text-align: center;
  font-weight: 700;
  color: #ef4444;
  font-size: 15px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}
.modern-table tbody td.td-actions[data-v-2f7f847e] {
  text-align: center;
}

/* Customer Info */
.customer-info[data-v-2f7f847e] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.customer-name[data-v-2f7f847e] {
  font-weight: 600;
  color: #1e293b;
}
.phone-number[data-v-2f7f847e] {
  font-family: "Courier New", monospace;
  color: #64748b;
  direction: ltr;
}
.reason-text[data-v-2f7f847e] {
  color: #64748b;
  font-size: 13px;
  max-width: 200px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Status Chips */
.status-chip[data-v-2f7f847e] {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.status-chip.status-pending[data-v-2f7f847e] {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #b45309;
}
.status-chip.status-approved[data-v-2f7f847e] {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #047857;
}
.status-chip.status-rejected[data-v-2f7f847e] {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

/* Action Buttons */
.action-buttons[data-v-2f7f847e] {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.btn-action[data-v-2f7f847e] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-action.btn-accept[data-v-2f7f847e] {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-action.btn-accept[data-v-2f7f847e]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.btn-action.btn-reject[data-v-2f7f847e] {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.btn-action.btn-reject[data-v-2f7f847e]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}
.no-action[data-v-2f7f847e] {
  color: #cbd5e1;
  font-size: 16px;
}

/* Empty State */
.empty-state[data-v-2f7f847e] {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.empty-icon[data-v-2f7f847e] {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-icon i[data-v-2f7f847e] {
  font-size: 48px;
  color: #ef4444;
}
.empty-title[data-v-2f7f847e] {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
}
.empty-description[data-v-2f7f847e] {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* Pagination */
.pagination-wrapper[data-v-2f7f847e] {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Modal Styles */
.modal-card[data-v-2f7f847e] {
  border-radius: 20px !important;
  overflow: hidden;
}
.modal-header[data-v-2f7f847e] {
  padding: 30px;
  text-align: center;
}
.modal-header-success[data-v-2f7f847e] {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.modal-header-danger[data-v-2f7f847e] {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.modal-icon[data-v-2f7f847e] {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-icon i[data-v-2f7f847e] {
  font-size: 36px;
  color: #fff;
}
.modal-title[data-v-2f7f847e] {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.modal-body[data-v-2f7f847e] {
  padding: 30px !important;
}
.modal-message[data-v-2f7f847e] {
  text-align: center;
  font-size: 16px;
  color: #475569;
  margin: 0;
}
.modal-footer[data-v-2f7f847e] {
  display: flex;
  gap: 12px;
  padding: 20px 30px 30px;
  justify-content: center;
}
.btn-modal[data-v-2f7f847e] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-modal.btn-cancel[data-v-2f7f847e] {
  background: #f1f5f9;
  color: #64748b;
}
.btn-modal.btn-cancel[data-v-2f7f847e]:hover {
  background: #e2e8f0;
}
.btn-modal.btn-success[data-v-2f7f847e] {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-modal.btn-success[data-v-2f7f847e]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.btn-modal.btn-danger[data-v-2f7f847e] {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.btn-modal.btn-danger[data-v-2f7f847e]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}
.btn-modal[data-v-2f7f847e]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1200px) {
.modern-table[data-v-2f7f847e] {
    font-size: 13px;
}
.modern-table thead th[data-v-2f7f847e],
  .modern-table tbody td[data-v-2f7f847e] {
    padding: 12px 10px;
}
}
@media (max-width: 768px) {
.page-header[data-v-2f7f847e] {
    padding: 20px;
}
.page-title[data-v-2f7f847e] {
    font-size: 24px;
}
.table-header[data-v-2f7f847e] {
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
.action-buttons[data-v-2f7f847e] {
    flex-direction: column;
}
.btn-action[data-v-2f7f847e] {
    width: 100%;
    justify-content: center;
}
}
table :not(.reportPage) th[data-v-2f7f847e]:first-child,
table :not(.reportPage) th[data-v-2f7f847e]:last-child {
  background-color: unset !important;
}

/* Mobile Card View */
.mobile-card-view[data-v-2f7f847e] {
  display: none;
}
.request-card[data-v-2f7f847e] {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.request-card[data-v-2f7f847e]:hover {
  border-color: #ef4444;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.15);
  transform: translateY(-2px);
}
.card-header[data-v-2f7f847e] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}
.card-id[data-v-2f7f847e] {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.card-status-wrapper[data-v-2f7f847e] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.card-body[data-v-2f7f847e] {
  margin-bottom: 16px;
}
.card-info-row[data-v-2f7f847e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f8fafc;
}
.card-info-row[data-v-2f7f847e]:last-child {
  border-bottom: none;
}
.card-label[data-v-2f7f847e] {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-label i[data-v-2f7f847e] {
  color: #ef4444;
  font-size: 16px;
}
.card-value[data-v-2f7f847e] {
  font-size: 14px;
  color: #1e293b;
  font-weight: 600;
  text-align: left;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-reason[data-v-2f7f847e] {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  padding: 12px;
  border-radius: 10px;
  margin: 12px 0;
  border-right: 4px solid #ef4444;
}
.card-reason-label[data-v-2f7f847e] {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-reason-text[data-v-2f7f847e] {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}
.card-datetime[data-v-2f7f847e] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
}
.datetime-box[data-v-2f7f847e] {
  background: #f8fafc;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}
.datetime-label[data-v-2f7f847e] {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.datetime-value[data-v-2f7f847e] {
  font-size: 13px;
  color: #1e293b;
  font-weight: 700;
}
.card-actions[data-v-2f7f847e] {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #f1f5f9;
}
.card-actions .btn-action[data-v-2f7f847e] {
  flex: 1;
  justify-content: center;
  padding: 12px;
}
.no-action-card[data-v-2f7f847e] {
  text-align: center;
  padding: 12px;
  color: #cbd5e1;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
.modern-table[data-v-2f7f847e] {
    font-size: 13px;
}
.modern-table thead th[data-v-2f7f847e],
  .modern-table tbody td[data-v-2f7f847e] {
    padding: 12px 10px;
}
}
@media (max-width: 1024px) {
.page-container[data-v-2f7f847e] {
    padding: 16px;
}
.page-header[data-v-2f7f847e] {
    padding: 24px;
}
.page-title[data-v-2f7f847e] {
    font-size: 26px;
}
.table-header[data-v-2f7f847e] {
    padding: 20px;
}
}
@media (max-width: 768px) {
.page-container[data-v-2f7f847e] {
    padding: 12px;
}
.page-header[data-v-2f7f847e] {
    padding: 20px;
    border-radius: 16px;
}
.page-title[data-v-2f7f847e] {
    font-size: 22px;
}
.page-subtitle[data-v-2f7f847e] {
    font-size: 14px;
}
.table-card[data-v-2f7f847e] {
    border-radius: 16px;
}
.table-header[data-v-2f7f847e] {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 16px;
}
.table-info[data-v-2f7f847e] {
    width: 100%;
    justify-content: space-between;
}
.btn-refresh[data-v-2f7f847e] {
    flex: 1;
}

  /* إخفاء الجدول وإظهار الكاردات */
.table-responsive[data-v-2f7f847e] {
    display: none !important;
}
.mobile-card-view[data-v-2f7f847e] {
    display: block;
    padding: 16px;
}
.empty-state[data-v-2f7f847e] {
    padding: 60px 20px;
}
.empty-icon[data-v-2f7f847e] {
    width: 100px;
    height: 100px;
}
.empty-icon i[data-v-2f7f847e] {
    font-size: 40px;
}
.empty-title[data-v-2f7f847e] {
    font-size: 20px;
}
.empty-description[data-v-2f7f847e] {
    font-size: 14px;
}
.modal-card[data-v-2f7f847e] {
    margin: 12px;
}
.modal-header[data-v-2f7f847e] {
    padding: 24px 20px;
}
.modal-icon[data-v-2f7f847e] {
    width: 60px;
    height: 60px;
}
.modal-icon i[data-v-2f7f847e] {
    font-size: 30px;
}
.modal-title[data-v-2f7f847e] {
    font-size: 18px;
}
.modal-body[data-v-2f7f847e] {
    padding: 24px 20px !important;
}
.modal-message[data-v-2f7f847e] {
    font-size: 14px;
}
.modal-footer[data-v-2f7f847e] {
    flex-direction: column-reverse;
    padding: 16px 20px 24px;
}
.btn-modal[data-v-2f7f847e] {
    width: 100%;
    justify-content: center;
}
}
@media (max-width: 480px) {
.page-header[data-v-2f7f847e] {
    padding: 16px;
}
.page-title[data-v-2f7f847e] {
    font-size: 20px;
}
.breadcrumb-link[data-v-2f7f847e],
  .breadcrumb-current[data-v-2f7f847e] {
    font-size: 12px;
}
.request-card[data-v-2f7f847e] {
    padding: 16px;
}
.card-id[data-v-2f7f847e] {
    font-size: 16px;
    padding: 6px 12px;
}
.status-chip[data-v-2f7f847e] {
    font-size: 11px;
    padding: 6px 12px;
}
.card-info-row[data-v-2f7f847e] {
    padding: 10px 0;
}
.card-label[data-v-2f7f847e],
  .card-value[data-v-2f7f847e] {
    font-size: 12px;
}
.card-datetime[data-v-2f7f847e] {
    gap: 8px;
}
.datetime-box[data-v-2f7f847e] {
    padding: 8px;
}
.records-count[data-v-2f7f847e] {
    font-size: 12px;
    padding: 8px 14px;
}
}

