@charset "UTF-8";

/* src/styles.scss */
:root {
  --primary-color: #3b82f6;
  --secondary-color: #6366f1;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #06b6d4;
  --bg-color: #ffffff;
  --text-color: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --surface-color: #f9fafb;
  --surface-hover: #f3f4f6;
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[dir=rtl] body,
html[lang=ar] body {
  font-family:
    "Tajawal",
    "Cairo",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.7;
}
.card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}
.surface {
  background: var(--surface-color);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pulse {
  animation: pulse 2s infinite;
}
.dragover {
  border-color: var(--primary-color) !important;
  background-color: rgba(59, 130, 246, 0.05) !important;
  transform: scale(1.02);
}
[dir=rtl] {
  text-align: right;
  font-family:
    "Amiri",
    "Tajawal",
    "Noto Sans Arabic",
    "Segoe UI",
    Tahoma,
    Arial,
    sans-serif;
}
[dir=rtl] .flex {
  flex-direction: row-reverse;
}
[dir=rtl] .ml-auto {
  margin-right: auto;
  margin-left: auto;
}
[dir=rtl] .mr-auto {
  margin-left: auto;
  margin-right: auto;
}
[dir=rtl] .pl-4 {
  padding-right: 1rem;
  padding-left: 0;
}
[dir=rtl] .pr-4 {
  padding-left: 1rem;
  padding-right: 0;
}
[dir=rtl] .ml-4 {
  margin-right: 1rem;
  margin-left: 0;
}
[dir=rtl] .mr-4 {
  margin-left: 1rem;
  margin-right: 0;
}
[dir=rtl] .border-l {
  border-right: 1px solid var(--border-color);
  border-left: none;
}
[dir=rtl] .border-r {
  border-left: 1px solid var(--border-color);
  border-right: none;
}
[dir=rtl] .arrow-left {
  transform: rotate(180deg);
}
[dir=rtl] .arrow-right {
  transform: rotate(180deg);
}
[dir=rtl] .dropdown-menu {
  left: auto;
  right: 0;
}
[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=password],
[dir=rtl] textarea,
[dir=rtl] select {
  text-align: right;
  direction: rtl;
}
[dir=rtl] table {
  direction: rtl;
}
[dir=rtl] th,
[dir=rtl] td {
  text-align: right;
}
[dir=rtl] th:first-child,
[dir=rtl] td:first-child {
  border-radius: 0 8px 8px 0;
}
[dir=rtl] th:last-child,
[dir=rtl] td:last-child {
  border-radius: 8px 0 0 8px;
}
[dir=rtl] .btn-with-icon {
  flex-direction: row-reverse;
}
[dir=rtl] .btn-with-icon .icon {
  margin-left: 0.5rem;
  margin-right: 0;
}
[dir=rtl] .card {
  text-align: right;
}
[dir=rtl] .progress-bar {
  direction: rtl;
}
[dir=rtl] .modal-header .close {
  margin-left: auto;
  margin-right: 0;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--surface-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
button:disabled,
.btn:disabled,
input[type=submit]:disabled,
input[type=button]:disabled {
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
}
button:disabled:hover,
.btn:disabled:hover,
input[type=submit]:disabled:hover,
input[type=button]:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
}
.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 8px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.glass-btn {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.glass-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  transform: translateY(-2px);
}
.glass-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.glass-btn:hover::before {
  opacity: 1;
}
.glass-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: all 0.3s ease;
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  transform: translateY(-2px);
}
@media (prefers-color-scheme: dark) {
  .glass-btn {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(156, 163, 175, 0.2);
  }
  .glass-btn:hover {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(156, 163, 175, 0.3);
  }
  .glass-card {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(156, 163, 175, 0.3);
  }
  .glass-card:hover {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(156, 163, 175, 0.4);
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  html,
  body {
    height: auto !important;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
}
@supports (padding: env(safe-area-inset-top)) {
  body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
