*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  color: #ffffff;
  /* iOS 26 inspired vibrant, abstract animated background */
  background: linear-gradient(135deg, #131316 0%, #1e1e24 40%, #003a5c 70%, #131316 100%);
  background-size: 200% 200%;
  animation: abstractBg 15s ease infinite;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes abstractBg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

a {
  color: #0096DF;
  text-decoration: none;
  transition: color 0.1s ease;
}

a:hover {
  color: #0096DF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

.ltr-numbers {
  direction: ltr;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: isolate;
  text-align: right;
  /* Force right alignment to match table headers in RTL */
}

.english-font {
  font-family: Arial, Helvetica, sans-serif !important;
}

.glass-card {
  background: rgba(30, 30, 36, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
}

.glass-card:hover {
  background: rgba(40, 40, 50, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px 0 rgba(0, 150, 223, 0.25);
  transform: translateY(-2px);
}

.glass-card-static {
  background: rgba(30, 30, 36, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
}

.glass-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  padding: 12px 16px;
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
}

.glass-input.has-icon, .input-wrapper .glass-input, .search-wrapper .glass-input {
  padding-inline-start: 48px;
  padding-inline-end: 16px;
}

.glass-input::placeholder {
  color: #a1a1aa;
}

.glass-input:focus {
  border-color: #0096DF;
  box-shadow: 0 0 0 3px rgba(0, 150, 223, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
  background: linear-gradient(135deg, #0096DF, #007AB5);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 150, 223, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 150, 223, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-action, .btn-icon {
  background: rgba(255, 255, 255, 0.05);
  color: #0096DF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: "Cairo", sans-serif;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.1s ease;
}

.btn-action:hover, .btn-icon:hover {
  background: rgba(0, 150, 223, 0.15);
  border-color: #0096DF;
}

.badge-vip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 184, 0, 0.25);
  color: #FFFFFF;
  border: 1px solid rgba(255, 184, 0, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-regular {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.25);
  color: #FFFFFF;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-standard {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(228, 228, 231, 0.25);
  color: #FFFFFF;
  border: 1px solid rgba(228, 228, 231, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-success {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.25);
  color: #FFFFFF;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-warning {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(245, 158, 11, 0.25);
  color: #FFFFFF;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-danger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(239, 68, 68, 0.25);
  color: #FFFFFF;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-container {
  padding: 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.page-header h2 {
  font-size: 24px;
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.section-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.glass-table {
  width: 100%;
  border-collapse: collapse;
}

.glass-table th {
  text-align: right;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #e4e4e7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.glass-table td {
  padding: 14px 16px;
  font-size: 16px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.glass-table tbody tr {
  transition: background 0.1s ease;
}

.glass-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-card {
  background: rgba(30, 30, 36, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card:hover {
  background: rgba(40, 40, 50, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px 0 rgba(0, 150, 223, 0.25);
  transform: translateY(-2px);
}

.stat-card .stat-label {
  font-size: 14px;
  color: #e4e4e7;
  font-weight: 500;
}

.stat-card .stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  direction: ltr;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: isolate;
}

.stat-card .stat-change {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.stat-card .stat-change.positive {
  color: #10b981;
}

.stat-card .stat-change.negative {
  color: #ef4444;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.animate-slide-in {
  animation: slideInRight 0.3s ease forwards;
}

.notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid rgba(32, 32, 36, 0.45);
}

.notification-dot.active {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.print-header, .print-footer {
  display: none;
}

@media print {
  .sidebar, .top-header, .btn-action, .btn-primary, .action-btn {
    display: none !important;
  }

  .print-header {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    margin-bottom: 30px;
    border-bottom: 3px double #1a365d;
    padding-bottom: 20px;
  }
  .print-header .print-logo {
    width: 140px;
  }
  .print-header .print-titles {
    text-align: left;
  }
  .print-header .print-titles h2 {
    font-size: 26px !important;
    font-weight: 900 !important;
    margin: 0 0 8px 0 !important;
    color: #1a365d !important;
  }
  .print-header .print-titles h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    color: #4a5568 !important;
  }
  .print-header .print-titles h4 {
    font-size: 16px !important;
    margin: 0 !important;
    color: #718096 !important;
  }

  .print-footer {
    display: flex !important;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    page-break-inside: avoid;
  }
  .print-footer .signature-block {
    text-align: center;
    width: 40%;
  }
  .print-footer .signature-block .role {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 50px !important;
    color: #2d3748 !important;
  }
  .print-footer .signature-block .name {
    font-family: "Amiri", "Traditional Arabic", serif !important;
    font-size: 24px !important;
    font-weight: bold !important;
    margin-bottom: 10px !important;
    color: #1a202c !important;
  }
  .print-footer .signature-block .sig-line {
    border-top: 2px solid #a0aec0;
    width: 80%;
    margin: 0 auto;
  }

  .main-content {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  body {
    background: white !important;
    color: black !important;
    font-family: "Cairo", sans-serif !important;
    font-size: 12pt !important;
  }

  .glass-card, .glass-card-static, .glass-panel {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: black !important;
    padding: 0 !important;
  }

  .glass-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 40px !important;
    border: 2px solid #2d3748 !important;
  }
  .glass-table th, .glass-table td {
    border: 1px solid #cbd5e0 !important;
    color: #1a202c !important;
    padding: 12px 14px !important;
    text-align: right !important;
    font-size: 13pt !important;
  }
  .glass-table th {
    background-color: #edf2f7 !important;
    -webkit-print-color-adjust: exact;
    font-weight: 800 !important;
    color: #2d3748 !important;
    border-bottom: 2px solid #2d3748 !important;
  }
  .glass-table tbody tr:nth-child(even) {
    background-color: #f7fafc !important;
    -webkit-print-color-adjust: exact;
  }

  .section-title {
    color: #1a365d !important;
    border-bottom: 2px solid #1a365d !important;
    margin-bottom: 25px !important;
    padding-bottom: 10px !important;
    font-size: 22px !important;
    font-weight: 800 !important;
  }

  .stat-card {
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    background: #f7fafc !important;
    -webkit-print-color-adjust: exact;
    padding: 20px !important;
    margin-bottom: 20px !important;
  }
  .stat-card .stat-label {
    color: #4a5568 !important;
    font-size: 14pt !important;
    font-weight: 700 !important;
  }
  .stat-card .stat-value {
    color: #2b6cb0 !important;
    font-size: 24pt !important;
    font-weight: 900 !important;
  }

  h1, h2, h3, h4, h5, span, div {
    color: black !important;
  }
}

/*# sourceMappingURL=styles.css.map*/