.modern-card {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(123, 104, 238, 0.08);
  padding: 1.5rem;
  transition: box-shadow 200ms ease-in-out;
}

.modern-card:hover {
  box-shadow: 0 8px 16px rgba(123, 104, 238, 0.12);
}

.modern-card.hover-lift {
  transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.modern-card.hover-lift:hover {
  transform: translateY(-4px);
}

.modern-card.no-padding {
  padding: 0;
}

.stat-card {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(123, 104, 238, 0.08);
  padding: 1.5rem;
  transition: box-shadow 200ms ease-in-out;
  padding: 1.5rem;
}

.stat-card:hover {
  box-shadow: 0 8px 16px rgba(123, 104, 238, 0.12);
}

.stat-card.purple .stat-icon {
  background-color: rgba(124, 58, 237, 0.1);
}

.stat-card.purple .stat-icon i {
  color: #7C3AED;
}

.stat-card.blue .stat-icon {
  background-color: rgba(110, 193, 228, 0.1);
}

.stat-card.blue .stat-icon i {
  color: #6EC1E4;
}

.stat-card.orange .stat-icon {
  background-color: rgba(255, 154, 118, 0.1);
}

.stat-card.orange .stat-icon i {
  color: #FF9A76;
}

.stat-card.green .stat-icon {
  background-color: rgba(126, 217, 87, 0.1);
}

.stat-card.green .stat-icon i {
  color: #7ED957;
}

.btn-modern {
  background-color: #7C3AED;
  color: #FFFFFF;
  border: none;
  border-radius: 0.75rem;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-modern:hover {
  background-color: #6315e9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

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

.btn-modern:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-modern.btn-secondary {
  background-color: #4B5563;
  color: #FFFFFF;
  border: none;
  border-radius: 0.75rem;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(75, 85, 99, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-modern.btn-secondary:hover {
  background-color: #39414c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(75, 85, 99, 0.45);
}

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

.btn-modern.btn-secondary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-modern.btn-success {
  background-color: #48BB78;
  color: #FFFFFF;
  border: none;
  border-radius: 0.75rem;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(72, 187, 120, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-modern.btn-success:hover {
  background-color: #3b9f65;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.45);
}

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

.btn-modern.btn-success:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-modern.btn-danger {
  background-color: #F56565;
  color: #FFFFFF;
  border: none;
  border-radius: 0.75rem;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 101, 101, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-modern.btn-danger:hover {
  background-color: #f33f3f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 101, 101, 0.45);
}

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

.btn-modern.btn-danger:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-modern.btn-outline {
  background-color: transparent;
  border: 2px solid #7C3AED;
  color: #7C3AED;
}

.btn-modern.btn-outline:hover {
  background-color: #7C3AED;
  color: #FFFFFF;
}

.btn-modern.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.btn-modern.btn-lg {
  padding: 15px 28px;
  font-size: 1rem;
}

.input-modern {
  width: 100%;
  padding: 11px 14px;
  padding-left: 42px;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.625rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #1E1B4B;
  background-color: #FAFAFA;
  transition: all 200ms ease-in-out;
  outline: none;
}

.input-modern:focus {
  border-color: #7C3AED;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.input-modern::-moz-placeholder {
  color: #9CA3AF;
}

.input-modern::placeholder {
  color: #9CA3AF;
}

.input-modern:disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}

.input-modern.has-error {
  border-color: #F56565;
}

.input-modern.has-error:focus {
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.08);
}

.input-modern.input-lg {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}

.input-modern.input-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.input-group-modern {
  position: relative;
}

.input-group-modern .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
}

.input-group-modern input {
  padding-left: calc(1rem + 24px);
}

.badge-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #7C3AED;
  color: #FFFFFF;
}

.badge-modern.badge-success {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #48BB78;
  color: #FFFFFF;
}

.badge-modern.badge-warning {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #ECC94B;
  color: #1E1B4B;
}

.badge-modern.badge-error {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #F56565;
  color: #FFFFFF;
}

.badge-modern.badge-info {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #4299E1;
  color: #FFFFFF;
}

.avatar-modern {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FFFFFF;
}

.avatar-modern.avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FFFFFF;
}

.avatar-modern.avatar-lg {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FFFFFF;
}

.avatar-modern.avatar-xl {
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FFFFFF;
}

.table-modern {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.table-modern thead th {
  background-color: #FAFAFA;
  color: #6B7280;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
}

.table-modern thead th:first-child {
  border-top-left-radius: 0.625rem;
}

.table-modern thead th:last-child {
  border-top-right-radius: 0.625rem;
}

.table-modern tbody tr {
  transition: background-color 150ms ease-in-out;
}

.table-modern tbody tr:hover {
  background-color: #FAFAFA;
}

.table-modern tbody tr td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #E5E7EB;
  color: #1E1B4B;
}

.table-modern tbody tr td.action-cell {
  text-align: right;
}

.table-modern tbody tr:last-child td {
  border-bottom: none;
}

.ia-table-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(123, 104, 238, 0.08);
  overflow: hidden;
}

.ia-table-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.ia-table-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1E1B4B;
  margin: 0;
  white-space: nowrap;
}

.ia-table-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .ia-table-card-actions {
    width: 100%;
  }
}

.ia-search-box {
  position: relative;
}

@media (max-width: 576px) {
  .ia-search-box {
    width: 100%;
  }
}

.ia-search-input {
  height: 38px;
  padding: 0 1.5rem 0 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1E1B4B;
  background: #FFFFFF;
  width: 220px;
  transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.ia-search-input::-moz-placeholder {
  color: #9CA3AF;
}

.ia-search-input::placeholder {
  color: #9CA3AF;
}

.ia-search-input:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

@media (max-width: 576px) {
  .ia-search-input {
    width: 100%;
  }
}

.ia-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7C3AED;
  font-size: 0.875rem;
  pointer-events: none;
}

.ia-filter-panel {
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid #F5F5F5;
  background: #FAFAFA;
  position: relative;
  z-index: 100;
}

.ia-filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 1rem;
}

.ia-table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.ia-table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
}

.ia-table thead tr {
  border-bottom: 1px solid #E5E7EB;
}

.ia-table thead th {
  padding: 14px 3rem;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: transparent;
}

.ia-table tbody tr.ia-table-row {
  border-bottom: 1px solid #F5F5F5;
  transition: background 150ms ease-in-out;
}

.ia-table tbody tr.ia-table-row:hover {
  background: #FAFAFA;
}

.ia-table tbody tr.ia-table-row:last-child {
  border-bottom: none;
}

.ia-table tbody td {
  padding: 16px 3rem;
  font-size: 0.875rem;
  color: #6B7280;
  vertical-align: middle;
  white-space: normal;
  word-wrap: break-word;
}

.ia-th-checkbox,
.ia-td-checkbox {
  width: 48px;
  text-align: center;
  padding-left: 1.5rem !important;
  padding-right: 0 !important;
}

.ia-th-wide,
.ia-td-wide {
  min-width: 350px;
  width: 35%;
}

.ia-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #D1D5DB;
  cursor: pointer;
  accent-color: #7C3AED;
}

.ia-checkbox:checked {
  border-color: #7C3AED;
}

.ia-td-primary {
  font-weight: 500;
  color: #1E1B4B;
}

.ia-enquirer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ia-enquirer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ia-enquirer-avatar span {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ia-enquirer-details {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.ia-enquirer-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1E1B4B;
}

.ia-enquirer-sub {
  font-size: 0.75rem;
  color: #9CA3AF;
}

.ia-th-action,
.ia-td-action {
  text-align: right;
  width: 100px;
  padding-right: 2rem !important;
}

.ia-action-group {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.ia-action-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}

.ia-action-btn i {
  font-size: 14px;
}

.ia-action-btn.ia-action-delete {
  color: #9CA3AF;
}

.ia-action-btn.ia-action-delete:hover {
  color: #F56565;
  background: rgba(245, 101, 101, 0.08);
}

.ia-action-btn.ia-action-edit {
  color: #9CA3AF;
}

.ia-action-btn.ia-action-edit:hover {
  color: #7C3AED;
  background: rgba(124, 58, 237, 0.08);
}

.ia-action-btn.ia-action-view {
  color: #9CA3AF;
}

.ia-action-btn.ia-action-view:hover {
  color: #4299E1;
  background: rgba(66, 153, 225, 0.08);
}

.ia-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-right: 4px;
}

.ia-badge.ia-badge-success {
  background: rgba(72, 187, 120, 0.12);
  color: #2F855A;
}

.ia-badge.ia-badge-warning {
  background: rgba(236, 201, 75, 0.15);
  color: #975A16;
}

.ia-badge.ia-badge-danger {
  background: rgba(245, 101, 101, 0.12);
  color: #C53030;
}

.ia-badge.ia-badge-info {
  background: rgba(66, 153, 225, 0.12);
  color: #2B6CB0;
}

.ia-text-muted {
  color: #9CA3AF;
}

.ia-table-footer {
  padding: 1rem 2rem;
  border-top: 1px solid #F5F5F5;
}

.ia-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 0.25rem;
  background: #7C3AED;
  color: white;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
}

.ia-muted-text {
  color: #9CA3AF;
  font-size: 0.875rem;
}

.ia-row-muted {
  background: #FAFAFA !important;
  opacity: 0.7;
}

.modern-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 1rem;
  background: rgba(66, 153, 225, 0.08);
  color: #4299E1;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  border: 1px solid rgba(66, 153, 225, 0.2);
}

.modern-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 1rem;
  background: rgba(124, 58, 237, 0.08);
  color: #7C3AED;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.modern-stat-badge.modern-stat-badge-success {
  background: rgba(72, 187, 120, 0.08);
  color: #48BB78;
  border-color: rgba(72, 187, 120, 0.2);
}

::v-deep .vdp-datepicker__calendar {
  z-index: 9999 !important;
}

::v-deep .multiselect__content-wrapper {
  z-index: 9999 !important;
}

.modern-form-container {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}

.modern-form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(123, 104, 238, 0.08);
  overflow: visible;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.modern-form-section.modern-form-section-students {
  background: #FAFAFA;
  z-index: 3;
}

.modern-form-section:focus-within {
  z-index: 5000;
}

@media (max-width: 576px) {
  .modern-form-section {
    padding: 1rem;
    gap: 1rem;
  }
}

.modern-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1E1B4B;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #7C3AED;
}

.modern-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: start;
  min-width: 0;
}

@media (max-width: 768px) {
  .modern-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.modern-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: visible;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.modern-form-group.modern-form-group-full {
  grid-column: 1/-1;
}

.modern-form-group:focus-within {
  z-index: 3000;
}

.modern-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1E1B4B;
}

.modern-input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1E1B4B;
  background: #FAFAFA;
  transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.modern-input:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.modern-input::-moz-placeholder {
  color: #9CA3AF;
}

.modern-input::placeholder {
  color: #9CA3AF;
}

.modern-select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1E1B4B;
  background: #FAFAFA;
  transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.modern-select:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.multiselect {
  position: relative;
  z-index: 10;
  width: 100%;
  min-width: 0;
}

.multiselect__content-wrapper {
  z-index: 1000 !important;
  max-width: 100%;
}

.modern-modal-body .multiselect {
  position: relative;
  z-index: 10000;
}

.modern-modal-body .multiselect__content-wrapper {
  z-index: 10001 !important;
}

.vdp-datepicker {
  position: relative;
  z-index: 2000;
  width: 100%;
}

.vdp-datepicker:focus-within {
  z-index: 4000;
}

.vdp-datepicker input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.vdp-datepicker__calendar {
  z-index: 10000 !important;
  position: fixed;
}

.modern-radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modern-radio {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.modern-radio-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #7C3AED;
}

.modern-radio-label {
  font-size: 0.875rem;
  color: #6B7280;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.modern-student-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.modern-student-card {
  background: #FFFFFF;
  border-radius: 0.625rem;
  box-shadow: 0 2px 8px rgba(123, 104, 238, 0.08);
  overflow: visible;
  position: relative;
  z-index: 5;
  transition: box-shadow 200ms ease-in-out;
  min-width: 0;
}

.modern-student-card:hover {
  box-shadow: 0 8px 16px rgba(123, 104, 238, 0.12);
}

.modern-student-card:focus-within {
  z-index: 3500;
}

.modern-student-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #FAFAFA;
  border-bottom: 1px solid #E5E7EB;
}

@media (max-width: 576px) {
  .modern-student-card-header {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
}

.modern-student-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin: 0;
}

.modern-student-card-body {
  padding: 1.5rem;
  overflow: visible;
  position: relative;
}

@media (max-width: 576px) {
  .modern-student-card-body {
    padding: 1rem;
  }
}

.modern-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.375rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.modern-btn-icon.modern-btn-icon-danger {
  background: rgba(245, 101, 101, 0.1);
  color: #C53030;
}

.modern-btn-icon.modern-btn-icon-danger:hover {
  background: #C53030;
  color: #FFFFFF;
}

.modern-form-actions {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 576px) {
  .modern-form-actions {
    flex-direction: column;
  }
}

.modern-form-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #FAFAFA;
  border-radius: 0.75rem;
}

@media (max-width: 576px) {
  .modern-form-footer {
    flex-direction: column-reverse;
    padding: 1rem;
  }
}

.modern-btn {
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.modern-btn i {
  font-size: 0.875rem;
}

.modern-btn:hover {
  transform: translateY(-1px);
}

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

.modern-btn.modern-btn-primary {
  background: #7C3AED;
  color: #FFFFFF;
}

.modern-btn.modern-btn-primary:hover {
  background: #6D28D9;
}

.modern-btn.modern-btn-secondary {
  background: #E5E7EB;
  color: #1E1B4B;
}

.modern-btn.modern-btn-secondary:hover {
  background: #D1D5DB;
}

.modern-btn.modern-btn-danger {
  background: #F56565;
  color: #FFFFFF;
}

.modern-btn.modern-btn-danger:hover {
  background: #E53E3E;
}

.modern-btn.modern-btn-sm {
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  border-radius: 0.375rem;
}

.header-actions .modern-btn {
  width: auto;
}

textarea,
.multiselect,
.multiselect__tags,
.vdp-datepicker,
.vdp-datepicker input {
  max-width: 100%;
  box-sizing: border-box;
}

.progress-modern {
  height: 8px;
  background-color: #E5E7EB;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-modern .progress-bar {
  height: 100%;
  background-color: #7C3AED;
  border-radius: 9999px;
  transition: width 300ms ease-in-out;
}

.progress-modern .progress-bar.success {
  background-color: #48BB78;
}

.progress-modern .progress-bar.warning {
  background-color: #ECC94B;
}

.progress-modern .progress-bar.error {
  background-color: #F56565;
}

.dropdown-modern {
  position: relative;
}

.dropdown-modern .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dropdown-modern .dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 200px;
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  z-index: 1000;
}

.dropdown-modern .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  color: #1E1B4B;
  transition: background-color 150ms ease-in-out;
  cursor: pointer;
}

.dropdown-modern .dropdown-menu .dropdown-item:hover {
  background-color: #F5F5F5;
}

.dropdown-modern .dropdown-menu .dropdown-item.active {
  background-color: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}

.dropdown-modern .dropdown-menu .dropdown-divider {
  height: 1px;
  background-color: #E5E7EB;
  margin: 0.5rem 0;
}

.modal-modern .modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-modern .modal-container {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  max-height: 90vh;
  overflow: visible;
}

.modal-modern .modal-container .modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-modern .modal-container .modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E1B4B;
}

.modal-modern .modal-container .modal-header .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #9CA3AF;
  cursor: pointer;
  transition: color 150ms ease-in-out;
}

.modal-modern .modal-container .modal-header .close-btn:hover {
  color: #1E1B4B;
}

.modal-modern .modal-container .modal-body {
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 140px);
}

.modal-modern .modal-container .modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modern-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-modal-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-modal-container {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  max-height: 90vh;
  overflow: visible;
  position: relative;
  z-index: 10000;
}

.modern-modal-container .modern-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modern-modal-container .modern-modal-header .modern-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E1B4B;
}

.modern-modal-container .modern-modal-header .modern-modal-close {
  background: none;
  border: none;
  font-size: 1.125rem;
  color: #9CA3AF;
  cursor: pointer;
  transition: color 150ms ease-in-out;
  width: 32px;
  height: 32px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-modal-container .modern-modal-header .modern-modal-close:hover {
  color: #1E1B4B;
  background-color: #F5F5F5;
}

.modern-modal-container .modern-modal-body {
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 140px);
  overflow-x: visible;
}

.modern-modal-body .dropdown-menu {
  z-index: 10001 !important;
  position: fixed !important;
}

.modern-modal-body ::v-deep .dropdown-menu {
  z-index: 10001 !important;
  position: fixed !important;
}

.alert-modern {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-modern.alert-success {
  background-color: rgba(72, 187, 120, 0.1);
  border-color: #48BB78;
  color: #2b7249;
}

.alert-modern.alert-warning {
  background-color: rgba(236, 201, 75, 0.1);
  border-color: #ECC94B;
  color: #8f730f;
}

.alert-modern.alert-error {
  background-color: rgba(245, 101, 101, 0.1);
  border-color: #F56565;
  color: #e50f0f;
}

.alert-modern.alert-info {
  background-color: rgba(66, 153, 225, 0.1);
  border-color: #4299E1;
  color: #1a65a3;
}

.spinner-modern {
  width: 40px;
  height: 40px;
  border: 4px solid #E5E7EB;
  border-top-color: #7C3AED;
  border-radius: 9999px;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
}

.spinner-modern.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner-modern.spinner-lg {
  width: 60px;
  height: 60px;
  border-width: 6px;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #E5E7EB 25%, #F5F5F5 50%, #E5E7EB 75%);
  background-size: 1000px 100%;
  -webkit-animation: shimmer 1.6s infinite linear;
          animation: shimmer 1.6s infinite linear;
  border-radius: 0.625rem;
}

.skeleton.skeleton-text {
  height: 14px;
  margin-bottom: 0.25rem;
}

.skeleton.skeleton-title {
  height: 24px;
  margin-bottom: 0.5rem;
}

.skeleton.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
}

.skeleton.skeleton-card {
  height: 120px;
  border-radius: 1rem;
}

.skeleton.skeleton-btn {
  height: 38px;
  width: 120px;
  border-radius: 0.625rem;
}

.toast-modern {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: #FFFFFF;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  min-width: 300px;
  max-width: 420px;
  border-left: 4px solid #7C3AED;
}

.toast-modern .toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.toast-modern .toast-body {
  flex: 1;
}

.toast-modern .toast-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1E1B4B;
  margin-bottom: 2px;
}

.toast-modern .toast-msg {
  font-size: 0.75rem;
  color: #6B7280;
}

.toast-modern .toast-close {
  color: #9CA3AF;
  cursor: pointer;
  font-size: 1.125rem;
  background: none;
  border: none;
  transition: color 150ms ease-in-out;
}

.toast-modern .toast-close:hover {
  color: #1E1B4B;
}

.toast-modern.toast-success {
  border-color: #48BB78;
}

.toast-modern.toast-success .toast-icon {
  color: #48BB78;
}

.toast-modern.toast-warning {
  border-color: #ECC94B;
}

.toast-modern.toast-warning .toast-icon {
  color: #ECC94B;
}

.toast-modern.toast-error {
  border-color: #F56565;
}

.toast-modern.toast-error .toast-icon {
  color: #F56565;
}

.toast-modern.toast-info {
  border-color: #4299E1;
}

.toast-modern.toast-info .toast-icon {
  color: #4299E1;
}

.stat-card-modern {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(123, 104, 238, 0.08);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 200ms ease-in-out, transform 200ms ease-in-out;
}

.stat-card-modern:hover {
  box-shadow: 0 8px 16px rgba(123, 104, 238, 0.12);
  transform: translateY(-2px);
}

.stat-card-modern .stat-info .stat-label {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.25rem;
}

.stat-card-modern .stat-info .stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1E1B4B;
  line-height: 1;
}

.stat-card-modern .stat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-modern .stat-icon-wrap i {
  font-size: 1.5rem;
}

.stat-card-modern.card-purple .stat-icon-wrap {
  background: rgba(124, 58, 237, 0.12);
}

.stat-card-modern.card-purple .stat-icon-wrap i {
  color: #7C3AED;
}

.stat-card-modern.card-blue .stat-icon-wrap {
  background: rgba(110, 193, 228, 0.12);
}

.stat-card-modern.card-blue .stat-icon-wrap i {
  color: #6EC1E4;
}

.stat-card-modern.card-orange .stat-icon-wrap {
  background: rgba(255, 154, 118, 0.12);
}

.stat-card-modern.card-orange .stat-icon-wrap i {
  color: #FF9A76;
}

.stat-card-modern.card-green .stat-icon-wrap {
  background: rgba(126, 217, 87, 0.12);
}

.stat-card-modern.card-green .stat-icon-wrap i {
  color: #7ED957;
}

.stat-card-modern.card-pink .stat-icon-wrap {
  background: rgba(255, 107, 157, 0.12);
}

.stat-card-modern.card-pink .stat-icon-wrap i {
  color: #FF6B9D;
}

.page-header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.page-header-card .page-heading h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1E1B4B;
  margin: 0 0 0.25rem;
}

.page-header-card .page-heading .page-bc {
  font-size: 0.875rem;
  color: #9CA3AF;
}

.page-header-card .page-heading .page-bc span {
  margin: 0 0.25rem;
}

.page-header-card .page-actions {
  display: flex;
  gap: 0.5rem;
}

.modern-page {
  padding: 2rem 3rem;
  min-height: calc(100vh - 70px);
}

.modern-page-header {
  margin-bottom: 2rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-left {
  flex: 1;
  min-width: 0;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1E1B4B;
  margin: 0;
}

.page-subtitle {
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-top: 0.25rem;
  display: block;
}

.modern-page-content {
  min-width: 0;
}

.modern-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(123, 104, 238, 0.08);
  overflow: visible;
}

.modern-card-body {
  padding: 2rem;
}

.modern-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1E1B4B;
  margin: 0 0 1.5rem;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #E5E7EB;
}

.modern-textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1E1B4B;
  background: #FAFAFA;
  transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
  resize: vertical;
}

.modern-textarea:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.modern-textarea::-moz-placeholder {
  color: #9CA3AF;
}

.modern-textarea::placeholder {
  color: #9CA3AF;
}

.modern-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.modern-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #7C3AED;
}

.modern-checkbox span {
  font-size: 0.875rem;
  color: #1E1B4B;
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid #E5E7EB;
}

.filter-row .filter-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-row .filter-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .modern-page {
    padding: 1.5rem 1rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .ia-table-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ia-table-card-actions {
    width: 100%;
  }

  .ia-search-input {
    width: 100%;
  }

  .modern-card-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .modern-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .modern-page {
    padding: 1rem 0.5rem;
  }

  .page-title {
    font-size: 1.25rem;
  }

  .ia-table th,
  .ia-table td {
    padding: 10px 1rem;
  }

  .modern-card-body {
    padding: 1rem;
  }

  .ia-table-card-header {
    padding: 1rem;
  }

  .ia-table-footer {
    padding: 0.5rem 1rem;
  }
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #F3F0FA;
  color: #1E1B4B;
  line-height: 1.5;
  font-size: 1rem;
}

#main-wrapper {
  display: block;
  min-height: 100vh;
}

#main-wrapper.modern-layout {
  background-color: #F3F0FA;
}

.left-sidebar.modern-sidebar {
  width: 260px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 1030;
  transition: all 200ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.left-sidebar.modern-sidebar .sidebar-brand {
  height: 70px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E5E7EB;
}

.left-sidebar.modern-sidebar .sidebar-brand .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.left-sidebar.modern-sidebar .sidebar-brand .brand-logo img {
  height: 40px;
  width: auto;
}

.left-sidebar.modern-sidebar .sidebar-brand .brand-logo .brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #7C3AED;
}

.left-sidebar.modern-sidebar .sidebar-brand .brand-logo .brand-text .brand-highlight {
  color: #1E1B4B;
}

.left-sidebar.modern-sidebar .scroll-sidebar {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 0;
}

.left-sidebar.modern-sidebar .scroll-sidebar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.left-sidebar.modern-sidebar .scroll-sidebar::-webkit-scrollbar-track {
  background: #E5E7EB;
  border-radius: 9999px;
}

.left-sidebar.modern-sidebar .scroll-sidebar::-webkit-scrollbar-thumb {
  background: #9CA3AF;
  border-radius: 9999px;
}

.left-sidebar.modern-sidebar .scroll-sidebar::-webkit-scrollbar-thumb:hover {
  background: #808998;
}

.left-sidebar.modern-sidebar .sidebar-nav {
  padding: 0 1rem;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item {
  margin-bottom: 0.25rem;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  color: #6B7280;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  font-weight: 500;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item .nav-link i {
  font-size: 1.125rem;
  width: 24px;
  text-align: center;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item .nav-link:hover {
  background-color: rgba(124, 58, 237, 0.05);
  color: #7C3AED;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item .nav-link.active {
  background-color: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
  font-weight: 600;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item.has-submenu .nav-link {
  position: relative;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item.has-submenu .nav-link::after {
  content: "\F078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  transition: transform 200ms ease-in-out;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item.has-submenu .nav-link.expanded::after {
  transform: rotate(180deg);
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item.has-submenu .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease-in-out;
  padding-left: calc(1.5rem + 24px);
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item.has-submenu .submenu.show {
  max-height: 500px;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item.has-submenu .submenu .submenu-item {
  padding: 0.5rem 1.5rem;
  color: #6B7280;
  text-decoration: none;
  display: block;
  border-radius: 0.625rem;
  transition: all 150ms ease-in-out;
  font-size: 0.875rem;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item.has-submenu .submenu .submenu-item:hover {
  color: #7C3AED;
  background-color: rgba(124, 58, 237, 0.05);
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-item.has-submenu .submenu .submenu-item.active {
  color: #7C3AED;
  font-weight: 500;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-divider {
  height: 1px;
  background-color: #E5E7EB;
  margin: 1.5rem 0;
}

.left-sidebar.modern-sidebar .sidebar-nav .nav-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9CA3AF;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.left-sidebar.modern-sidebar .sidebar-footer {
  border-top: 1px solid #E5E7EB;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-sidebar.modern-sidebar .sidebar-footer .footer-link {
  width: 40px;
  height: 40px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: all 200ms ease-in-out;
}

.left-sidebar.modern-sidebar .sidebar-footer .footer-link:hover {
  background-color: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}

.left-sidebar.modern-sidebar.mini {
  width: 70px;
}

.left-sidebar.modern-sidebar.mini .brand-text,
.left-sidebar.modern-sidebar.mini .nav-link span,
.left-sidebar.modern-sidebar.mini .nav-section-title {
  display: none;
}

.left-sidebar.modern-sidebar.mini .nav-link {
  justify-content: center;
  padding: 1rem;
}

.topbar.modern-header {
  height: 70px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 260px;
  right: 0;
  z-index: 1020;
  transition: left 200ms ease-in-out;
}

.topbar.modern-header .navbar {
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar.modern-header .navbar .navbar-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.topbar.modern-header .navbar .navbar-left .search-box {
  position: relative;
  width: 400px;
}

.topbar.modern-header .navbar .navbar-left .search-box input {
  width: 100%;
  padding: 11px 14px;
  padding-left: 42px;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.625rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #1E1B4B;
  background-color: #FAFAFA;
  transition: all 200ms ease-in-out;
  outline: none;
  padding-left: calc(1rem + 32px);
  background-color: #F5F5F5;
  border: none;
}

.topbar.modern-header .navbar .navbar-left .search-box input:focus {
  border-color: #7C3AED;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.topbar.modern-header .navbar .navbar-left .search-box input::-moz-placeholder {
  color: #9CA3AF;
}

.topbar.modern-header .navbar .navbar-left .search-box input::placeholder {
  color: #9CA3AF;
}

.topbar.modern-header .navbar .navbar-left .search-box input:disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}

.topbar.modern-header .navbar .navbar-left .search-box input.has-error {
  border-color: #F56565;
}

.topbar.modern-header .navbar .navbar-left .search-box input.has-error:focus {
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.08);
}

.topbar.modern-header .navbar .navbar-left .search-box input:focus {
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.topbar.modern-header .navbar .navbar-left .search-box .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
}

.topbar.modern-header .navbar .navbar-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.topbar.modern-header .navbar .navbar-right .nav-item {
  position: relative;
}

.topbar.modern-header .navbar .navbar-right .nav-item .nav-link {
  width: 40px;
  height: 40px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: all 200ms ease-in-out;
  position: relative;
}

.topbar.modern-header .navbar .navbar-right .nav-item .nav-link:hover {
  background-color: #F5F5F5;
  color: #1E1B4B;
}

.topbar.modern-header .navbar .navbar-right .nav-item .nav-link .badge-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background-color: #F56565;
  border-radius: 9999px;
  border: 2px solid #FFFFFF;
}

.topbar.modern-header .navbar .navbar-right .user-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 200ms ease-in-out;
}

.topbar.modern-header .navbar .navbar-right .user-profile:hover {
  background-color: #F5F5F5;
}

.topbar.modern-header .navbar .navbar-right .user-profile .avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FFFFFF;
}

.topbar.modern-header .navbar .navbar-right .user-profile .user-info .user-name {
  font-weight: 500;
  color: #1E1B4B;
  font-size: 0.875rem;
}

.topbar.modern-header .navbar .navbar-right .user-profile .user-info .user-role {
  font-size: 0.75rem;
  color: #9CA3AF;
}

.topbar.modern-header .navbar .navbar-right .user-profile .dropdown-icon {
  color: #9CA3AF;
}

.topbar.modern-header.sidebar-mini {
  left: 70px;
}

.page-wrapper.modern-page {
  margin-left: 260px;
  margin-top: 70px;
  padding: 2rem;
  min-height: calc(100vh - 70px);
  transition: margin-left 200ms ease-in-out;
}

.page-wrapper.modern-page.sidebar-mini {
  margin-left: 70px;
}

.page-wrapper.modern-page .footer {
  left: 0 !important;
  width: 100% !important;
  padding: 17px 0 !important;
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

body.mini-sidebar .page-wrapper.modern-page {
  margin-left: 70px;
}

.dashboard-grid {
  display: grid;
  gap: 1.5rem;
}

.dashboard-grid.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.dashboard-grid.content-grid {
  grid-template-columns: repeat(12, 1fr);
}

.dashboard-grid.content-grid .col-span-1 {
  grid-column: span 1;
}

.dashboard-grid.content-grid .col-span-2 {
  grid-column: span 2;
}

.dashboard-grid.content-grid .col-span-3 {
  grid-column: span 3;
}

.dashboard-grid.content-grid .col-span-4 {
  grid-column: span 4;
}

.dashboard-grid.content-grid .col-span-5 {
  grid-column: span 5;
}

.dashboard-grid.content-grid .col-span-6 {
  grid-column: span 6;
}

.dashboard-grid.content-grid .col-span-7 {
  grid-column: span 7;
}

.dashboard-grid.content-grid .col-span-8 {
  grid-column: span 8;
}

.dashboard-grid.content-grid .col-span-9 {
  grid-column: span 9;
}

.dashboard-grid.content-grid .col-span-10 {
  grid-column: span 10;
}

.dashboard-grid.content-grid .col-span-11 {
  grid-column: span 11;
}

.dashboard-grid.content-grid .col-span-12 {
  grid-column: span 12;
}

@media (max-width: 575px) {
  .dashboard-grid.content-grid [class*=col-span-] {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .dashboard-grid.content-grid .col-md-6 {
    grid-column: span 6;
  }

  .dashboard-grid.content-grid .col-md-4 {
    grid-column: span 4;
  }

  .dashboard-grid.content-grid .col-md-3 {
    grid-column: span 3;
  }
}

@media (max-width: 575px) {
  .left-sidebar.modern-sidebar {
    transform: translateX(-100%);
  }

  .left-sidebar.modern-sidebar.show {
    transform: translateX(0);
  }

  .topbar.modern-header {
    left: 0;
  }

  .page-wrapper.modern-page {
    margin-left: 0;
  }
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.m-0 {
  margin: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 2rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #1E1B4B;
}

.text-secondary {
  color: #6B7280;
}

.text-muted {
  color: #9CA3AF;
}

.text-white {
  color: #FFFFFF;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

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

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

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.gap-5 {
  gap: 2rem;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-col {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.75;
}

.bg-primary {
  background-color: #F3F0FA;
}

.bg-secondary {
  background-color: #FFFFFF;
}

.bg-white {
  background-color: #FFFFFF;
}

.border {
  border: 1px solid #E5E7EB;
}

.border-top {
  border-top: 1px solid #E5E7EB;
}

.border-bottom {
  border-bottom: 1px solid #E5E7EB;
}

.border-purple {
  border-color: #7C3AED !important;
}

.border-none {
  border: none;
}

.rounded-sm {
  border-radius: 0.375rem;
}

.rounded {
  border-radius: 0.625rem;
}

.rounded-lg {
  border-radius: 0.75rem;
}

.rounded-xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-half {
  width: 50%;
}

.w-third {
  width: 33.333%;
}

.w-quarter {
  width: 25%;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.font-tabular {
  font-variant-numeric: tabular-nums;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.form-group-modern {
  margin-bottom: 1rem;
}

.form-group-modern label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 7px;
}

.form-group-modern .form-text {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-top: 0.25rem;
}

.form-group-modern .form-error {
  font-size: 0.75rem;
  color: #F56565;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.input-group-modern {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group-modern .input-icon {
  position: absolute;
  left: 14px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.input-group-modern .input-icon-right {
  position: absolute;
  right: 14px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 150ms ease-in-out;
}

.input-group-modern .input-icon-right:hover {
  color: #7C3AED;
}

.input-group-modern .input-modern.has-right-icon,
.input-group-modern input.has-right-icon {
  padding-right: 42px;
}

.select-modern {
  width: 100%;
  padding: 11px 14px;
  padding-left: 42px;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.625rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #1E1B4B;
  background-color: #FAFAFA;
  transition: all 200ms ease-in-out;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.select-modern:focus {
  border-color: #7C3AED;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.select-modern::-moz-placeholder {
  color: #9CA3AF;
}

.select-modern::placeholder {
  color: #9CA3AF;
}

.select-modern:disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}

.select-modern.has-error {
  border-color: #F56565;
}

.select-modern.has-error:focus {
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.08);
}

.textarea-modern {
  width: 100%;
  padding: 11px 14px;
  padding-left: 42px;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.625rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #1E1B4B;
  background-color: #FAFAFA;
  transition: all 200ms ease-in-out;
  outline: none;
  resize: vertical;
  min-height: 100px;
  line-height: 1.75;
}

.textarea-modern:focus {
  border-color: #7C3AED;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.textarea-modern::-moz-placeholder {
  color: #9CA3AF;
}

.textarea-modern::placeholder {
  color: #9CA3AF;
}

.textarea-modern:disabled {
  background-color: #F5F5F5;
  cursor: not-allowed;
}

.textarea-modern.has-error {
  border-color: #F56565;
}

.textarea-modern.has-error:focus {
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.08);
}

.divider-modern {
  height: 1px;
  background: #E5E7EB;
  margin: 1.5rem 0;
}

.divider-modern.divider-purple {
  background: linear-gradient(90deg, transparent, #7C3AED, transparent);
  height: 2px;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem;
  text-align: center;
  color: #9CA3AF;
}

.empty-state i {
  font-size: 3rem;
  opacity: 0.4;
}

.empty-state h3 {
  font-size: 1.25rem;
  color: #6B7280;
}

.empty-state p {
  font-size: 0.875rem;
  max-width: 360px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-fadeIn {
  -webkit-animation: fadeIn 0.3s ease-in-out;
          animation: fadeIn 0.3s ease-in-out;
}

.animate-slideInUp {
  -webkit-animation: slideInUp 0.3s ease-out;
          animation: slideInUp 0.3s ease-out;
}

.animate-slideInDown {
  -webkit-animation: slideInDown 0.3s ease-out;
          animation: slideInDown 0.3s ease-out;
}

.animate-pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media print {
  .left-sidebar,
  .topbar,
  .no-print {
    display: none !important;
  }

  .page-wrapper {
    margin: 0 !important;
    padding: 0 !important;
  }
}


/*# sourceMappingURL=modern-design.css.map*/