/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ============================================
   GLOBAL UTILITY STYLES — Sudocad.io Design System
   ============================================ */
/* Hide ABP's default confirmation dialog — replaced by CustomConfirmationComponent */
abp-confirmation {
  display: none !important;
}

/* ============================================
   KPI GRID
   ============================================ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

.kpi-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #F3F4F6;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .kpi-card {
    padding: 20px;
  }
}

.kpi-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.kpi-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #FFFFFF;
}
.kpi-icon.primary {
  background: linear-gradient(135deg, #7C7EF5 0%, #A78BFA 50%, #F0A1C0 100%);
}
.kpi-icon.success {
  background: linear-gradient(135deg, #34D399 0%, #6EE7B7 100%);
}
.kpi-icon.warning {
  background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 100%);
}
.kpi-icon.danger {
  background: linear-gradient(135deg, #F87171 0%, #FCA5A5 100%);
}
.kpi-icon.info {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
}
@media (max-width: 768px) {
  .kpi-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

.kpi-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.kpi-trend.up {
  background: rgba(52, 211, 153, 0.1);
  color: #34D399;
}
.kpi-trend.down {
  background: rgba(248, 113, 113, 0.1);
  color: #F87171;
}

.kpi-value {
  font-size: 32px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 4px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .kpi-value {
    font-size: 26px;
  }
}

.kpi-label {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

/* ============================================
   COMMON CARD
   ============================================ */
.sudo-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}
.sudo-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .sudo-card {
    padding: 20px;
    border-radius: 16px;
  }
}

.sudo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sudo-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
}

.sudo-card-link {
  font-size: 14px;
  color: #7C7EF5;
  font-weight: 500;
  text-decoration: none;
}
.sudo-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   STATUS BADGES
   ============================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.status-badge .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.status-badge.success {
  background: rgba(52, 211, 153, 0.1);
  color: #34D399;
}
.status-badge.success .status-dot {
  background: #34D399;
}
.status-badge.warning {
  background: rgba(251, 191, 36, 0.1);
  color: rgb(206.7242152466, 150.0874439462, 3.7757847534);
}
.status-badge.warning .status-dot {
  background: #FBBF24;
}
.status-badge.danger {
  background: rgba(248, 113, 113, 0.1);
  color: #F87171;
}
.status-badge.danger .status-dot {
  background: #F87171;
}
.status-badge.info {
  background: rgba(124, 126, 245, 0.1);
  color: #7C7EF5;
}
.status-badge.info .status-dot {
  background: #7C7EF5;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.sudo-progress-bar {
  width: 100%;
  height: 8px;
  background: #F3F4F6;
  border-radius: 4px;
  overflow: hidden;
}

.sudo-progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}
.sudo-progress-fill.high {
  background: linear-gradient(135deg, #34D399 0%, #6EE7B7 100%);
}
.sudo-progress-fill.medium {
  background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 100%);
}
.sudo-progress-fill.low {
  background: linear-gradient(135deg, #F87171 0%, #FCA5A5 100%);
}
.sudo-progress-fill.primary {
  background: linear-gradient(135deg, #7C7EF5 0%, #A78BFA 50%, #F0A1C0 100%);
}

/* ============================================
   AI INSIGHTS CARD
   ============================================ */
.ai-card {
  background: rgba(124, 126, 245, 0.04);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #7C7EF5 0%, #A78BFA 50%, #F0A1C0 100%);
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #7C7EF5 0%, #A78BFA 50%, #F0A1C0 100%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.ai-card-content {
  margin-top: 16px;
}
.ai-card-content p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}

/* ============================================
   AVATAR
   ============================================ */
.sudo-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  color: #FFFFFF;
  flex-shrink: 0;
}
.sudo-avatar.sm {
  width: 32px;
  height: 32px;
  font-size: 12px;
}
.sudo-avatar.md {
  width: 40px;
  height: 40px;
  font-size: 14px;
}
.sudo-avatar.lg {
  width: 56px;
  height: 56px;
  font-size: 18px;
}
.sudo-avatar.primary {
  background: linear-gradient(135deg, #7C7EF5 0%, #A78BFA 50%, #F0A1C0 100%);
}
.sudo-avatar.success {
  background: linear-gradient(135deg, #34D399 0%, #6EE7B7 100%);
}
.sudo-avatar.warning {
  background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 100%);
}
.sudo-avatar.danger {
  background: linear-gradient(135deg, #F87171 0%, #FCA5A5 100%);
}
.sudo-avatar.info {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
}

/* ============================================
   DATA TABLE
   ============================================ */
.sudo-table-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 32px;
}

.sudo-table-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #F3F4F6;
}
@media (max-width: 768px) {
  .sudo-table-card-header {
    padding: 16px 20px;
  }
}

.sudo-table-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
}

.sudo-data-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sudo-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.sudo-data-table th, .sudo-data-table td {
  padding: 14px 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .sudo-data-table th, .sudo-data-table td {
    padding: 12px 16px;
  }
}
.sudo-data-table th {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #F9FAFB;
  border-bottom: 1px solid #F3F4F6;
  white-space: nowrap;
}
.sudo-data-table tbody tr {
  transition: background 0.15s;
}
.sudo-data-table tbody tr:hover {
  background: #F9FAFB;
}
.sudo-data-table td {
  border-bottom: 1px solid #F3F4F6;
  font-size: 14px;
  color: #374151;
}
.sudo-data-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   ACTIVITY LIST
   ============================================ */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #F9FAFB;
  border-radius: 12px;
  transition: background 0.2s ease;
}
.activity-item:hover {
  background: #F3F4F6;
}

.activity-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #FFFFFF;
}
.activity-icon.primary {
  background: linear-gradient(135deg, #7C7EF5 0%, #A78BFA 50%, #F0A1C0 100%);
}
.activity-icon.success {
  background: linear-gradient(135deg, #34D399 0%, #6EE7B7 100%);
}
.activity-icon.warning {
  background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 100%);
}
.activity-icon.danger {
  background: linear-gradient(135deg, #F87171 0%, #FCA5A5 100%);
}
.activity-icon.info {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
}

.activity-body {
  flex: 1;
  min-width: 0;
}

.activity-text {
  font-size: 14px;
  color: #1F2937;
  font-weight: 500;
  margin-bottom: 3px;
}

.activity-time {
  font-size: 12px;
  color: #9CA3AF;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  text-align: center;
  padding: 60px 24px;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #9CA3AF;
  margin: 0 auto 20px;
}

.empty-state-title {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 8px;
}

.empty-state-text {
  font-size: 14px;
  color: #6B7280;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-sudo-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(135deg, #7C7EF5 0%, #A78BFA 50%, #F0A1C0 100%);
  color: #FFFFFF;
  transition: opacity 0.2s ease;
}
.btn-sudo-primary:hover {
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(124, 126, 245, 0.25);
}

.btn-sudo-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  background: #F3F4F6;
  color: #374151;
  transition: background 0.2s ease;
}
.btn-sudo-secondary:hover {
  background: #E5E7EB;
}

.btn-sudo-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  background: #FFFFFF;
  color: #374151;
  border: 2px solid #E5E7EB;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-sudo-outline:hover {
  border-color: #D1D5DB;
  background: #F9FAFB;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.sudo-form-group {
  margin-bottom: 20px;
}

.sudo-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}
.sudo-form-label .required {
  color: #F87171;
  margin-left: 2px;
}

.sudo-form-input,
.sudo-form-select,
.sudo-form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 14px;
  color: #1F2937;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.sudo-form-input:focus,
.sudo-form-select:focus,
.sudo-form-textarea:focus {
  border-color: #7C7EF5;
  box-shadow: 0 0 0 3px rgba(124, 126, 245, 0.08);
}
.sudo-form-input::placeholder,
.sudo-form-select::placeholder,
.sudo-form-textarea::placeholder {
  color: #9CA3AF;
}

.sudo-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.sudo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sudo-form-grid .full-width {
  grid-column: span 2;
}
@media (max-width: 1200px) {
  .sudo-form-grid {
    grid-template-columns: 1fr;
  }
  .sudo-form-grid .full-width {
    grid-column: span 1;
  }
}

/* ============================================
   TOGGLE SWITCH
   ============================================ */
.sudo-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.sudo-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.sudo-toggle-switch .toggle-slider {
  position: absolute;
  inset: 0;
  background: #D1D5DB;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.sudo-toggle-switch .toggle-slider::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.sudo-toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #34D399 0%, #6EE7B7 100%);
}
.sudo-toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

/* ============================================
   GRID UTILITIES
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SPACING UTILITIES
   ============================================ */
.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.sudo-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.sudo-page-title {
  font-size: 24px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.sudo-page-subtitle {
  font-size: 14px;
  color: #6B7280;
  margin: 4px 0 0;
}

/* ============================================
   ACTION DROPDOWN (custom, no library)
   ============================================ */
.sudo-action-dropdown {
  position: relative;
  display: inline-block;
}

.sudo-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: #6B7280;
  transition: background 0.15s, color 0.15s;
}
.sudo-action-trigger:hover {
  background: #F3F4F6;
  color: #374151;
}

.sudo-action-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 4px;
  min-width: 180px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #F3F4F6;
  z-index: 1000;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
}
.sudo-action-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sudo-action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}
.sudo-action-item i {
  width: 16px;
  text-align: center;
}
.sudo-action-item:hover {
  background: #F9FAFB;
}
.sudo-action-item.danger {
  color: #F87171;
}
.sudo-action-item.danger:hover {
  background: rgba(248, 113, 113, 0.06);
}

/* ============================================
   MODAL SECTIONS
   ============================================ */
.sudo-modal-section {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F3F4F6;
}
.sudo-modal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sudo-modal-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sudo-modal-section-title i {
  color: #7C7EF5;
  font-size: 14px;
}

/* ============================================
   FORM VALIDATION & HINTS
   ============================================ */
.sudo-form-error {
  font-size: 12px;
  color: #F87171;
  margin-top: 4px;
}

.sudo-form-hint {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 4px;
}

/* ============================================
   FILTER BAR
   ============================================ */
.sudo-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.sudo-filter-input {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}
.sudo-filter-input input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 14px;
  color: #1F2937;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
}
.sudo-filter-input input:focus {
  border-color: #7C7EF5;
}
.sudo-filter-input input::placeholder {
  color: #9CA3AF;
}
.sudo-filter-input i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  font-size: 14px;
}

/* ============================================
   PILL BADGE (for school type etc.)
   ============================================ */
.sudo-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.sudo-pill.primary {
  background: rgba(124, 126, 245, 0.1);
  color: #7C7EF5;
}
.sudo-pill.success {
  background: rgba(52, 211, 153, 0.1);
  color: #34D399;
}
.sudo-pill.warning {
  background: rgba(251, 191, 36, 0.1);
  color: rgb(206.7242152466, 150.0874439462, 3.7757847534);
}
.sudo-pill.info {
  background: rgba(96, 165, 250, 0.1);
  color: #60A5FA;
}

/* ============================================
   MODAL SYSTEM
   ============================================ */
.sudo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1040;
  animation: sudo-fade-in 0.15s ease;
}

.sudo-modal-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 24px;
  animation: sudo-slide-up 0.2s ease;
}

.sudo-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}
.sudo-modal-content.sudo-modal-sm {
  max-width: 420px;
}
.sudo-modal-content.sudo-modal-lg {
  max-width: 720px;
}
.sudo-modal-content.sudo-modal-xl {
  max-width: 900px;
}

.sudo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}

.sudo-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.sudo-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #F3F4F6;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: background 0.15s;
  flex-shrink: 0;
}
.sudo-modal-close:hover {
  background: #E5E7EB;
}

.sudo-modal-body {
  padding: 24px;
}

.sudo-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 24px 24px;
  border-top: 1px solid #F3F4F6;
  margin-top: 0;
  padding-top: 20px;
}

/* ============================================
   CONFIRM DIALOG
   ============================================ */
.sudo-confirm-dialog .sudo-modal-content {
  max-width: 420px;
  text-align: center;
}
.sudo-confirm-dialog .sudo-confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.sudo-confirm-dialog .sudo-confirm-icon.warning {
  background: rgba(251, 191, 36, 0.12);
  color: #FBBF24;
}
.sudo-confirm-dialog .sudo-confirm-icon.danger {
  background: rgba(248, 113, 113, 0.12);
  color: #F87171;
}
.sudo-confirm-dialog .sudo-confirm-icon.info {
  background: rgba(96, 165, 250, 0.12);
  color: #60A5FA;
}
.sudo-confirm-dialog .sudo-confirm-icon.success {
  background: rgba(52, 211, 153, 0.12);
  color: #34D399;
}
.sudo-confirm-dialog .sudo-confirm-title {
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 8px;
}
.sudo-confirm-dialog .sudo-confirm-message {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0 0 24px;
}
.sudo-confirm-dialog .sudo-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

@keyframes sudo-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sudo-slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================
   LOADING SPINNER
   ============================================ */
.sudo-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.sudo-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E5E7EB;
  border-top-color: #7C7EF5;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ============================================
   CUSTOM DROPDOWN (sudo-dropdown)
   ============================================ */
.sudo-dropdown {
  position: relative;
  width: 100%;
}
.sudo-dropdown .sudo-dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 14px;
  color: #1F2937;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  text-align: left;
}
.sudo-dropdown .sudo-dropdown-trigger:hover {
  border-color: #D1D5DB;
}
.sudo-dropdown .sudo-dropdown-trigger:focus {
  border-color: #7C7EF5;
  box-shadow: 0 0 0 3px rgba(124, 126, 245, 0.08);
}
.sudo-dropdown .sudo-dropdown-trigger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #F9FAFB;
}
.sudo-dropdown .sudo-dropdown-value {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}
.sudo-dropdown .sudo-dropdown-value.placeholder {
  color: #9CA3AF;
}
.sudo-dropdown .sudo-dropdown-arrow {
  font-size: 12px;
  color: #9CA3AF;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}
.sudo-dropdown.open .sudo-dropdown-trigger {
  border-color: #7C7EF5;
  box-shadow: 0 0 0 3px rgba(124, 126, 245, 0.08);
}
.sudo-dropdown.open .sudo-dropdown-arrow {
  transform: rotate(180deg);
}
.sudo-dropdown .sudo-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1060;
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
  animation: sudo-slide-up 0.15s ease-out;
}
.sudo-dropdown .sudo-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 14px;
  color: #374151;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
  gap: 4px;
}
.sudo-dropdown .sudo-dropdown-item:hover {
  background: rgba(124, 126, 245, 0.06);
  color: #1F2937;
}
.sudo-dropdown .sudo-dropdown-item.selected {
  background: rgba(124, 126, 245, 0.1);
  color: #7C7EF5;
  font-weight: 600;
}
.sudo-dropdown .sudo-dropdown-check {
  margin-left: auto;
  font-size: 12px;
  color: #7C7EF5;
}
.sudo-dropdown .sudo-dropdown-empty {
  padding: 12px 16px;
  font-size: 13px;
  color: #9CA3AF;
  text-align: center;
}
.sudo-dropdown.disabled {
  pointer-events: none;
  opacity: 0.6;
}

/*# sourceMappingURL=custom-styles.e3240ac29042bd35.css.map*/