/* /Areas/Admin/Pages/Users/Students/Index.cshtml.rz.scp.css */
/* Students List Page Scoped Styles */
/* Table styling with DataTables integration, badges, and action buttons */

/* Filter Card Styling */
.admin-filter-card[b-7hca765z2t] {
  background: white;
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  padding: var(--admin-spacing);
  margin-bottom: calc(var(--admin-spacing) * 1.5);
  box-shadow: var(--admin-shadow-sm);
}

.admin-search-form[b-7hca765z2t] {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--admin-spacing);
  align-items: flex-end;
}

.admin-search-form .form-row[b-7hca765z2t] {
  display: contents;
}

.admin-search-form .form-group[b-7hca765z2t] {
  display: flex;
  flex-direction: column;
}

.admin-search-form .admin-form-control[b-7hca765z2t] {
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  padding: calc(var(--admin-spacing) * 0.5) calc(var(--admin-spacing) * 0.75);
  font-size: 0.95rem;
  color: var(--admin-text-primary);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-search-form .admin-form-control:focus[b-7hca765z2t] {
  outline: none;
  border-color: var(--admin-blue-bright);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.admin-search-form .admin-form-control[b-7hca765z2t]::placeholder {
  color: var(--admin-text-muted);
}

.admin-search-form .form-group[b-7hca765z2t] {
  gap: 0.25rem;
}

.admin-search-form .form-group:last-child[b-7hca765z2t] {
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
}

.admin-search-form .admin-btn[b-7hca765z2t] {
  white-space: nowrap;
}

/* Card Container for Table */
.admin-card[b-7hca765z2t] {
  background: white;
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  overflow: hidden;
  box-shadow: var(--admin-shadow-sm);
}

/* DataTable Styling */
.admin-datatable[b-7hca765z2t] {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.admin-datatable thead[b-7hca765z2t] {
  background-color: var(--admin-surface-2);
  border-bottom: 2px solid var(--admin-border);
}

.admin-datatable thead th[b-7hca765z2t] {
  padding: calc(var(--admin-spacing) * 0.75) var(--admin-spacing);
  text-align: left;
  font-weight: 600;
  color: var(--admin-text-primary);
  font-size: 0.9rem;
  white-space: nowrap;
  user-select: none;
}

[dir="rtl"] .admin-datatable thead th[b-7hca765z2t] {
  text-align: right;
}

.admin-datatable tbody tr[b-7hca765z2t] {
  border-bottom: 1px solid var(--admin-border);
  transition: background-color 0.15s ease;
}

.admin-datatable tbody tr:hover[b-7hca765z2t] {
  background-color: var(--admin-surface-2);
}

.admin-datatable tbody tr:last-child[b-7hca765z2t] {
  border-bottom: none;
}

.admin-datatable td[b-7hca765z2t] {
  padding: calc(var(--admin-spacing) * 0.75) var(--admin-spacing);
  color: var(--admin-text-primary);
  vertical-align: middle;
  font-size: 0.95rem;
}

.admin-datatable td:first-child[b-7hca765z2t] {
  font-weight: 500;
}

/* Badge Styling */
.admin-badge[b-7hca765z2t] {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.admin-badge-danger[b-7hca765z2t] {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--admin-red);
}

.admin-badge-success[b-7hca765z2t] {
  background-color: rgba(25, 135, 84, 0.1);
  color: var(--admin-green);
}

.admin-badge-muted[b-7hca765z2t] {
  background-color: var(--admin-surface-2);
  color: var(--admin-text-muted);
}

.admin-badge-info[b-7hca765z2t] {
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--admin-blue-bright);
}

/* Action Buttons Container */
.admin-action-buttons[b-7hca765z2t] {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-btn-sm[b-7hca765z2t] {
  padding: 0.375rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 0.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.admin-btn-primary[b-7hca765z2t] {
  background-color: var(--admin-blue-bright);
  color: white;
  border-color: var(--admin-blue-bright);
}

.admin-btn-primary:hover[b-7hca765z2t] {
  background-color: var(--admin-blue-dark);
  border-color: var(--admin-blue-dark);
  box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.admin-btn-danger[b-7hca765z2t] {
  background-color: var(--admin-red);
  color: white;
  border-color: var(--admin-red);
}

.admin-btn-danger:hover[b-7hca765z2t] {
  background-color: var(--admin-red);
  border-color: var(--admin-red);
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

.admin-btn-outline[b-7hca765z2t] {
  background: white;
  color: var(--admin-text-primary);
  border: 1.5px solid var(--admin-border);
  transition: all 0.15s;
}

.admin-btn-outline:hover[b-7hca765z2t] {
  background: var(--admin-surface-2);
  border-color: var(--admin-text-muted);
}

/* Empty State Styling */
.admin-empty-state[b-7hca765z2t] {
  padding: calc(var(--admin-spacing) * 3);
  text-align: center;
  color: var(--admin-text-muted);
}

.admin-empty-state i[b-7hca765z2t] {
  font-size: 3rem;
  color: var(--admin-border-hover);
  margin-bottom: var(--admin-spacing);
  display: block;
  opacity: 0.5;
}

.admin-empty-state h5[b-7hca765z2t] {
  color: var(--admin-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.admin-empty-state p[b-7hca765z2t] {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Results Summary */
.admin-results-summary[b-7hca765z2t] {
  margin-bottom: var(--admin-spacing);
  color: var(--admin-text-muted);
  font-size: 0.95rem;
}

.admin-results-summary strong[b-7hca765z2t] {
  color: var(--admin-text-primary);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .admin-search-form[b-7hca765z2t] {
    grid-template-columns: 1fr;
  }

  .admin-search-form .form-group:last-child[b-7hca765z2t] {
    flex-direction: row;
    grid-column: 1;
  }

  .admin-datatable[b-7hca765z2t] {
    font-size: 0.9rem;
  }

  .admin-datatable td[b-7hca765z2t] {
    padding: 0.5rem var(--admin-spacing);
  }
}

@media (max-width: 768px) {
  .admin-filter-card[b-7hca765z2t] {
    padding: calc(var(--admin-spacing) * 0.75);
  }

  .admin-search-form[b-7hca765z2t] {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .admin-search-form .form-group:last-child[b-7hca765z2t] {
    flex-direction: column;
    grid-column: 1;
  }

  .admin-search-form .form-group:last-child .admin-btn[b-7hca765z2t],
  .admin-search-form .form-group:last-child a[b-7hca765z2t] {
    width: 100%;
  }

  .admin-datatable[b-7hca765z2t] {
    font-size: 0.85rem;
  }

  .admin-datatable thead th[b-7hca765z2t] {
    padding: 0.5rem;
  }

  .admin-datatable td[b-7hca765z2t] {
    padding: 0.5rem;
  }

  .admin-action-buttons[b-7hca765z2t] {
    justify-content: center;
  }

  .admin-btn-sm[b-7hca765z2t] {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .table-responsive[b-7hca765z2t] {
    overflow-x: auto;
  }

  .admin-datatable[b-7hca765z2t] {
    min-width: 100%;
    font-size: 0.8rem;
  }

  .admin-datatable thead th[b-7hca765z2t],
  .admin-datatable td[b-7hca765z2t] {
    padding: 0.4rem 0.5rem;
  }

  .admin-badge[b-7hca765z2t] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }

  .admin-btn-sm[b-7hca765z2t] {
    padding: 0.25rem 0.4rem;
    font-size: 0.7rem;
  }

  .admin-btn-sm i[b-7hca765z2t] {
    font-size: 0.8rem;
  }

  .admin-action-buttons[b-7hca765z2t] {
    gap: 0.25rem;
  }

  .admin-empty-state[b-7hca765z2t] {
    padding: calc(var(--admin-spacing) * 1.5);
  }

  .admin-empty-state i[b-7hca765z2t] {
    font-size: 2rem;
  }
}

/* RTL Support */
[dir="rtl"] .admin-action-buttons[b-7hca765z2t] {
  flex-direction: row-reverse;
}

[dir="rtl"] .admin-search-form .form-group:last-child[b-7hca765z2t] {
  flex-direction: row-reverse;
}

[dir="rtl"] .admin-datatable thead th[b-7hca765z2t] {
  text-align: right;
}

[dir="rtl"] .admin-datatable td[b-7hca765z2t] {
  text-align: right;
}

[dir="rtl"] .admin-datatable td:first-child[b-7hca765z2t] {
  text-align: right;
}

/* DataTables.js Integration Styles */
.dataTables_wrapper[b-7hca765z2t] {
  position: relative;
}

.dataTables_length[b-7hca765z2t],
.dataTables_filter[b-7hca765z2t] {
  margin-bottom: var(--admin-spacing);
}

.dataTables_paginate[b-7hca765z2t] {
  margin-top: var(--admin-spacing);
  text-align: right;
}

[dir="rtl"] .dataTables_paginate[b-7hca765z2t] {
  text-align: left;
}

.paginate_button[b-7hca765z2t] {
  padding: 0.375rem 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid var(--admin-border);
  border-radius: 0.375rem;
  background-color: white;
  color: var(--admin-text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.paginate_button:hover:not(.disabled)[b-7hca765z2t] {
  background-color: var(--admin-surface-2);
  border-color: var(--admin-blue-bright);
}

.paginate_button.current[b-7hca765z2t] {
  background-color: var(--admin-blue-bright);
  color: white;
  border-color: var(--admin-blue-bright);
}

.paginate_button.disabled[b-7hca765z2t] {
  color: var(--admin-text-muted);
  cursor: not-allowed;
  opacity: 0.5;
}
/* /Areas/Committee/Pages/Dashboard/Index.cshtml.rz.scp.css */
/* ==========================================
Index.cshtml.css
========================================== */
.doc-dashboard-content[b-f8ht7md6bo] {
    --doc-navy: #0b2b4f;
    --doc-navy-light: #1e3a5f;
    --doc-border: #e2e8f0;
    --doc-radius: 1rem;
    --doc-text-muted: #64748b;
    --doc-surface: #ffffff;
    --doc-surface-2: #f8fafc;
    --doc-blue: #0d6efd;
    --doc-blue-soft: #2563eb;
    --doc-cyan: #0dcaf0;
    --doc-orange: #fd7e14;
    --doc-orange-soft: #ea580c;
    --doc-green: #198754;
    --doc-green-soft: #22c55e;
    --doc-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    width: 100%;
    margin-top: 1.5rem;
    padding: 2rem;
    border-radius: calc(var(--doc-radius) + 4px);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
}

/* ==========================================
Layout
========================================== */

.doctor-layout-body .main-content[b-f8ht7md6bo] {
    padding: 1.5rem 2rem;
}

/* ==========================================
Topbar
========================================== */

.doc-topbar[b-f8ht7md6bo] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.doc-topbar-actions[b-f8ht7md6bo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

[dir="rtl"] .doc-topbar-actions[b-f8ht7md6bo] {
    justify-content: flex-start;
}

.doc-welcome h1[b-f8ht7md6bo] {
    margin: 0;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--doc-navy);
}

.doc-welcome p[b-f8ht7md6bo] {
    margin-top: 0.35rem;
    color: var(--doc-text-muted);
    font-size: 0.9rem;
}

/* ==========================================
Chips & Buttons
========================================== */

.doc-today-chip[b-f8ht7md6bo] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--doc-text-muted);
}

    .doc-today-chip i[b-f8ht7md6bo] {
        color: var(--doc-blue);
    }

.doc-btn-new[b-f8ht7md6bo] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    background: var(--doc-navy);
    color: white;
    border-radius: 0.8rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

    .doc-btn-new:hover[b-f8ht7md6bo] {
        background: var(--doc-navy-light);
        transform: translateY(-2px);
        box-shadow: var(--doc-shadow);
        color: white;
        text-decoration: none;
    }

.doc-btn-dot[b-f8ht7md6bo] {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.35rem;
    background: var(--doc-blue);
    color: white;
    font-size: 0.75rem;
}

/* ==========================================
Stats Cards
========================================== */

.doc-stats-row[b-f8ht7md6bo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.doc-stat-card[b-f8ht7md6bo] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius);
    transition: all 0.2s ease;
    overflow: hidden;
}

    .doc-stat-card:hover[b-f8ht7md6bo] {
        transform: translateY(-3px);
        box-shadow: var(--doc-shadow);
    }

    .doc-stat-card[b-f8ht7md6bo]::after {
        content: "";
        position: absolute;
        inset-inline: 0;
        bottom: 0;
        height: 4px;
    }

    .doc-stat-card.review[b-f8ht7md6bo]::after {
        background: var(--doc-blue);
    }

    .doc-stat-card.forwarded[b-f8ht7md6bo]::after {
        background: var(--doc-cyan);
    }

    .doc-stat-card.completed[b-f8ht7md6bo]::after {
        background: var(--doc-green);
    }

.doc-stat-icon[b-f8ht7md6bo] {
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.doc-stat-card.review .doc-stat-icon[b-f8ht7md6bo] {
    background: #eff6ff;
    color: var(--doc-blue);
}

.doc-stat-card.forwarded .doc-stat-icon[b-f8ht7md6bo] {
    background: #e0f9ff;
    color: var(--doc-cyan);
}

.doc-stat-card.completed .doc-stat-icon[b-f8ht7md6bo] {
    background: #e6f4ea;
    color: var(--doc-green);
}

.doc-stat-value[b-f8ht7md6bo] {
    font-size: clamp(1.6rem, 5vw, 2rem);
    font-weight: 800;
    line-height: 1;
    color: var(--doc-navy);
}

.doc-stat-label[b-f8ht7md6bo] {
    margin-top: 0.3rem;
    color: var(--doc-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.doc-chip-warning[b-f8ht7md6bo] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    background: #fff3e8;
    color: var(--doc-orange);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.doc-stat-badge-alert[b-f8ht7md6bo] {
    margin-inline-start: auto;
}

/* ==========================================
Sections
========================================== */

.doc-section[b-f8ht7md6bo] {
    margin-bottom: 1.5rem;
    background: white;
    border: 1px solid var(--doc-border);
    border-radius: var(--doc-radius);
    overflow: hidden;
}

.doc-section-header[b-f8ht7md6bo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--doc-border);
}

.doc-section-title[b-f8ht7md6bo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: var(--doc-navy);
    font-size: 1rem;
    font-weight: 700;
}

    .doc-section-title i[b-f8ht7md6bo] {
        color: var(--doc-blue);
    }

.doc-section-title--warning i[b-f8ht7md6bo] {
    color: var(--doc-orange);
}

.doc-view-all[b-f8ht7md6bo] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--doc-blue);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.15s ease;
}

    .doc-view-all:hover[b-f8ht7md6bo] {
        gap: 0.45rem;
    }

.doc-attention-chip[b-f8ht7md6bo] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    background: #fff3e8;
    color: var(--doc-orange);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* ==========================================
Tables
========================================== */

.doc-table-wrap[b-f8ht7md6bo] {
    overflow-x: auto;
}

.doc-table-head[b-f8ht7md6bo],
.doc-table-row[b-f8ht7md6bo] {
    display: grid;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
}

.doc-table-head[b-f8ht7md6bo] {
    background: var(--doc-surface-2);
    border-bottom: 1px solid var(--doc-border);
    color: var(--doc-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.doc-table-row[b-f8ht7md6bo] {
    border-bottom: 1px solid var(--doc-border);
    transition: background 0.15s ease;
}

    .doc-table-row:hover[b-f8ht7md6bo] {
        background: #fafbfd;
    }

/* Make all cells align better */
.doc-table-head > div[b-f8ht7md6bo],
.doc-table-row > div[b-f8ht7md6bo] {
    display: flex;
    align-items: center;
}

/* Prevent action buttons from wrapping badly */
.doc-action-cell[b-f8ht7md6bo] {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.doc-app-id[b-f8ht7md6bo],
.doc-app-date[b-f8ht7md6bo] {
    font-family: monospace;
    font-size: 0.78rem;
}

.doc-app-id[b-f8ht7md6bo] {
    color: var(--doc-navy);
    font-weight: 600;
}

.doc-app-date[b-f8ht7md6bo] {
    color: var(--doc-text-muted);
}

/* ==========================================
Badges
========================================== */

.doc-type-badge[b-f8ht7md6bo],
.doc-status-badge[b-f8ht7md6bo] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}

.doc-type-default[b-f8ht7md6bo] {
    background: #f1f5f9;
    color: #64748b;
}

.doc-status-badge[b-f8ht7md6bo]::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
}


/* ==========================================
Returned Applications
========================================== */


.doc-comment[b-f8ht7md6bo] {
    margin: 0;
    padding: 0.45rem 0.8rem;
    background: #fff3e8;
    border-inline-start: 3px solid var(--doc-orange);
    border-radius: 0.5rem;
    color: #7c2d12;
    font-size: 0.76rem;
}

.doc-no-comment[b-f8ht7md6bo] {
    color: #94a3b8;
    font-size: 0.75rem;
    font-style: italic;
}


/* ==========================================
Empty State
========================================== */

.doc-empty-state[b-f8ht7md6bo] {
    padding: 3.5rem 1.5rem;
    text-align: center;
    color: var(--doc-text-muted);
}

.doc-empty-icon[b-f8ht7md6bo] {
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
    opacity: 0.3;
}

/* ==========================================
Animations
========================================== */

@keyframes empFadeUp-b-f8ht7md6bo {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctor-animate[b-f8ht7md6bo] {
    animation: empFadeUp-b-f8ht7md6bo 0.35s ease both;
}

.doc-delay-1[b-f8ht7md6bo] {
    animation-delay: 0.05s;
}

.doc-delay-2[b-f8ht7md6bo] {
    animation-delay: 0.1s;
}

.doc-delay-3[b-f8ht7md6bo] {
    animation-delay: 0.15s;
}

.doc-delay-4[b-f8ht7md6bo] {
    animation-delay: 0.2s;
}

/* ==========================================
Responsive
========================================== */

@media (max-width: 992px) {

    .doc-topbar[b-f8ht7md6bo] {
        flex-direction: column;
    }

    .doc-topbar-actions[b-f8ht7md6bo] {
        width: 100%;
    }

    .doc-table-wrap[b-f8ht7md6bo] {
        width: 100%;
        overflow-x: auto;
    }

}

@media (max-width: 768px) {
    .doc-dashboard-content[b-f8ht7md6bo] {
        padding: 1.25rem;
    }

    .doc-stats-row[b-f8ht7md6bo] {
        grid-template-columns: 1fr;
    }

    .doc-stat-card[b-f8ht7md6bo] {
        padding: 1.1rem;
    }

    .doc-section-header[b-f8ht7md6bo] {
        padding: 1rem;
    }

    .doc-table-head[b-f8ht7md6bo],
    .doc-table-row[b-f8ht7md6bo] {
        padding-inline: 1rem;
    }
}

@media (max-width: 576px) {
    .doc-topbar-actions[b-f8ht7md6bo] {
        width: 100%;
    }

    .doc-today-chip[b-f8ht7md6bo],
    .doc-btn-new[b-f8ht7md6bo] {
        width: 100%;
        justify-content: center;
    }

    .doc-btn-action[b-f8ht7md6bo] {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }
}

.doc-committee-card[b-f8ht7md6bo] {
    padding: 0;
    overflow: hidden;
}

/* HEADER */
.doc-committee-header[b-f8ht7md6bo] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--doc-border);
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

/* TITLE BLOCK */
.doc-committee-title[b-f8ht7md6bo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .doc-committee-title i[b-f8ht7md6bo] {
        font-size: 1.5rem;
        color: var(--doc-primary);
    }

    .doc-committee-title h3[b-f8ht7md6bo] {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--doc-primary-dark);
    }

.doc-committee-subtitle[b-f8ht7md6bo] {
    margin: 0;
    font-size: 0.78rem;
    color: var(--doc-muted);
}

/* ACADEMIC YEAR BADGE */
.doc-academic-badge[b-f8ht7md6bo] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #3730a3;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

/* BODY */
.doc-committee-body[b-f8ht7md6bo] {
    padding: 1.25rem 1.5rem;
    color: var(--doc-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
/* /Areas/Employee/Pages/Dashboard/Index.cshtml.rz.scp.css */
/* ==========================================
Index.cshtml.css
========================================== */
.emp-dashboard-content[b-ru4tfv1bbx] {
    --emp-navy: #0b2b4f;
    --emp-navy-light: #1e3a5f;
    --emp-border: #e2e8f0;
    --emp-radius: 1rem;
    --emp-text-muted: #64748b;
    --emp-surface: #ffffff;
    --emp-surface-2: #f8fafc;
    --emp-blue: #0d6efd;
    --emp-blue-soft: #2563eb;
    --emp-cyan: #0dcaf0;
    --emp-orange: #fd7e14;
    --emp-orange-soft: #ea580c;
    --emp-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    width: 100%;
    margin-top: 1.5rem;
    padding: 2rem;
    border-radius: calc(var(--emp-radius) + 4px);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
}

/* ==========================================
Layout
========================================== */

.employee-layout-body .main-content[b-ru4tfv1bbx] {
    padding: 1.5rem 2rem;
}

/* ==========================================
Topbar
========================================== */

.emp-topbar[b-ru4tfv1bbx] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.emp-topbar-actions[b-ru4tfv1bbx] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

[dir="rtl"] .emp-topbar-actions[b-ru4tfv1bbx] {
    justify-content: flex-start;
}

.emp-welcome h1[b-ru4tfv1bbx] {
    margin: 0;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--emp-navy);
}

.emp-welcome p[b-ru4tfv1bbx] {
    margin-top: 0.35rem;
    color: var(--emp-text-muted);
    font-size: 0.9rem;
}

/* ==========================================
Chips & Buttons
========================================== */

.emp-today-chip[b-ru4tfv1bbx] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: white;
    border: 1px solid var(--emp-border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--emp-text-muted);
}

    .emp-today-chip i[b-ru4tfv1bbx] {
        color: var(--emp-blue);
    }

.emp-btn-new[b-ru4tfv1bbx] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    background: var(--emp-navy);
    color: white;
    border-radius: 0.8rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

    .emp-btn-new:hover[b-ru4tfv1bbx] {
        background: var(--emp-navy-light);
        transform: translateY(-2px);
        box-shadow: var(--emp-shadow);
        color: white;
        text-decoration: none;
    }

.emp-btn-dot[b-ru4tfv1bbx] {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.35rem;
    background: var(--emp-blue);
    color: white;
    font-size: 0.75rem;
}

/* ==========================================
Stats Cards
========================================== */

.emp-stats-row[b-ru4tfv1bbx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.emp-stat-card[b-ru4tfv1bbx] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--emp-border);
    border-radius: var(--emp-radius);
    transition: all 0.2s ease;
    overflow: hidden;
}

    .emp-stat-card:hover[b-ru4tfv1bbx] {
        transform: translateY(-3px);
        box-shadow: var(--emp-shadow);
    }

    .emp-stat-card[b-ru4tfv1bbx]::after {
        content: "";
        position: absolute;
        inset-inline: 0;
        bottom: 0;
        height: 4px;
    }

    .emp-stat-card.queue[b-ru4tfv1bbx]::after {
        background: var(--emp-blue);
    }

    .emp-stat-card.forwarded[b-ru4tfv1bbx]::after {
        background: var(--emp-cyan);
    }

    .emp-stat-card.returned[b-ru4tfv1bbx]::after {
        background: var(--emp-orange);
    }

.emp-stat-icon[b-ru4tfv1bbx] {
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.emp-stat-card.queue .emp-stat-icon[b-ru4tfv1bbx] {
    background: #eff6ff;
    color: var(--emp-blue);
}

.emp-stat-card.forwarded .emp-stat-icon[b-ru4tfv1bbx] {
    background: #e0f9ff;
    color: var(--emp-cyan);
}

.emp-stat-card.returned .emp-stat-icon[b-ru4tfv1bbx] {
    background: #fff3e8;
    color: var(--emp-orange);
}

.emp-stat-value[b-ru4tfv1bbx] {
    font-size: clamp(1.6rem, 5vw, 2rem);
    font-weight: 800;
    line-height: 1;
    color: var(--emp-navy);
}

.emp-stat-label[b-ru4tfv1bbx] {
    margin-top: 0.3rem;
    color: var(--emp-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.emp-chip-warning[b-ru4tfv1bbx] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    background: #fff3e8;
    color: var(--emp-orange);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.emp-stat-badge-alert[b-ru4tfv1bbx] {
    margin-inline-start: auto;
}

/* ==========================================
Sections
========================================== */

.emp-section[b-ru4tfv1bbx] {
    margin-bottom: 1.5rem;
    background: white;
    border: 1px solid var(--emp-border);
    border-radius: var(--emp-radius);
    overflow: hidden;
}

.emp-section-header[b-ru4tfv1bbx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--emp-border);
}

.emp-section-title[b-ru4tfv1bbx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: var(--emp-navy);
    font-size: 1rem;
    font-weight: 700;
}

    .emp-section-title i[b-ru4tfv1bbx] {
        color: var(--emp-blue);
    }

.emp-section-title--warning i[b-ru4tfv1bbx] {
    color: var(--emp-orange);
}

.emp-view-all[b-ru4tfv1bbx] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--emp-blue);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.15s ease;
}

    .emp-view-all:hover[b-ru4tfv1bbx] {
        gap: 0.45rem;
    }

.emp-attention-chip[b-ru4tfv1bbx] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    background: #fff3e8;
    color: var(--emp-orange);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* ==========================================
Tables
========================================== */

.emp-table-wrap[b-ru4tfv1bbx] {
    overflow-x: auto;
}

.emp-table-head[b-ru4tfv1bbx],
.emp-table-row[b-ru4tfv1bbx] {
    display: grid;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
}

.emp-table-head[b-ru4tfv1bbx] {
    background: var(--emp-surface-2);
    border-bottom: 1px solid var(--emp-border);
    color: var(--emp-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.emp-table-row[b-ru4tfv1bbx] {
    border-bottom: 1px solid var(--emp-border);
    transition: background 0.15s ease;
}

    .emp-table-row:hover[b-ru4tfv1bbx] {
        background: #fafbfd;
    }

.emp-table-pending[b-ru4tfv1bbx] {
    grid-template-columns: 150px 100px 160px 130px 400px;
    min-width: 760px;
}

.emp-table-returned[b-ru4tfv1bbx] {
    grid-template-columns: 150px 100px 160px 130px 400px 350px;
    min-width: 760px;
}

/* Make all cells align better */
.emp-table-head > div[b-ru4tfv1bbx],
.emp-table-row > div[b-ru4tfv1bbx] {
    display: flex;
    align-items: center;
}

/* Prevent action buttons from wrapping badly */
.emp-action-cell[b-ru4tfv1bbx] {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.emp-app-id[b-ru4tfv1bbx],
.emp-app-date[b-ru4tfv1bbx] {
    font-family: monospace;
    font-size: 0.78rem;
}

.emp-app-id[b-ru4tfv1bbx] {
    color: var(--emp-navy);
    font-weight: 600;
}

.emp-app-date[b-ru4tfv1bbx] {
    color: var(--emp-text-muted);
}

/* ==========================================
Badges
========================================== */

.emp-type-badge[b-ru4tfv1bbx],
.emp-status-badge[b-ru4tfv1bbx] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}

.emp-type-default[b-ru4tfv1bbx] {
    background: #f1f5f9;
    color: #64748b;
}

.emp-status-badge[b-ru4tfv1bbx]::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
}


/* ==========================================
Returned Applications
========================================== */


.emp-comment[b-ru4tfv1bbx] {
    margin: 0;
    padding: 0.45rem 0.8rem;
    background: #fff3e8;
    border-inline-start: 3px solid var(--emp-orange);
    border-radius: 0.5rem;
    color: #7c2d12;
    font-size: 0.76rem;
}

.emp-no-comment[b-ru4tfv1bbx] {
    color: #94a3b8;
    font-size: 0.75rem;
    font-style: italic;
}


/* ==========================================
Empty State
========================================== */

.emp-empty-state[b-ru4tfv1bbx] {
    padding: 3.5rem 1.5rem;
    text-align: center;
    color: var(--emp-text-muted);
}

.emp-empty-icon[b-ru4tfv1bbx] {
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
    opacity: 0.3;
}

/* ==========================================
Animations
========================================== */

@keyframes empFadeUp-b-ru4tfv1bbx {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.employee-animate[b-ru4tfv1bbx] {
    animation: empFadeUp-b-ru4tfv1bbx 0.35s ease both;
}

.emp-delay-1[b-ru4tfv1bbx] {
    animation-delay: 0.05s;
}

.emp-delay-2[b-ru4tfv1bbx] {
    animation-delay: 0.1s;
}

.emp-delay-3[b-ru4tfv1bbx] {
    animation-delay: 0.15s;
}

.emp-delay-4[b-ru4tfv1bbx] {
    animation-delay: 0.2s;
}

/* ==========================================
Responsive
========================================== */

@media (max-width: 992px) {

    .emp-topbar[b-ru4tfv1bbx] {
        flex-direction: column;
    }

    .emp-topbar-actions[b-ru4tfv1bbx] {
        width: 100%;
    }

    .emp-table-wrap[b-ru4tfv1bbx] {
        width: 100%;
        overflow-x: auto;
    }

    /* PENDING TABLE */
    .emp-table-head.emp-table-pending[b-ru4tfv1bbx],
    .emp-table-row.emp-table-pending[b-ru4tfv1bbx] {
        grid-template-columns: 180px 130px 180px 180px 240px;
        min-width: 910px;
    }

    /* RETURNED TABLE */
    .emp-table-head.emp-table-returned[b-ru4tfv1bbx],
    .emp-table-row.emp-table-returned[b-ru4tfv1bbx] {
        grid-template-columns: 180px 130px 180px 260px 160px 260px;
        min-width: 1170px;
    }
}

@media (max-width: 768px) {
    .emp-dashboard-content[b-ru4tfv1bbx] {
        padding: 1.25rem;
    }

    .emp-stats-row[b-ru4tfv1bbx] {
        grid-template-columns: 1fr;
    }

    .emp-stat-card[b-ru4tfv1bbx] {
        padding: 1.1rem;
    }

    .emp-section-header[b-ru4tfv1bbx] {
        padding: 1rem;
    }

    .emp-table-head[b-ru4tfv1bbx],
    .emp-table-row[b-ru4tfv1bbx] {
        padding-inline: 1rem;
    }
}

@media (max-width: 576px) {
    .emp-topbar-actions[b-ru4tfv1bbx] {
        width: 100%;
    }

    .emp-today-chip[b-ru4tfv1bbx],
    .emp-btn-new[b-ru4tfv1bbx] {
        width: 100%;
        justify-content: center;
    }

    .emp-btn-action[b-ru4tfv1bbx] {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }
}
/* /Areas/Student/Pages/Applications/Create.cshtml.rz.scp.css */
/* Application type selection page */

.type-options[b-3uswcvzlvu] {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.type-option[b-3uswcvzlvu] {
  border: 2px solid var(--student-border);
  border-radius: 12px;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color .15s, background .15s, box-shadow .15s;
  position: relative;
  background: white;
}

.type-option:hover[b-3uswcvzlvu] {
  border-color: var(--student-border-hover);
  background: #fafbfd;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.type-option.selected[b-3uswcvzlvu] {
  border-color: var(--student-navy);
  background: #f8faff;
  box-shadow: 0 0 0 1px var(--student-navy), 0 4px 16px rgba(11, 22, 40, .1);
}

.type-icon[b-3uswcvzlvu] {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.type-option:nth-child(1) .type-icon[b-3uswcvzlvu] {
  background: #eff6ff;
  color: #3b82f6;
}

.type-option:nth-child(2) .type-icon[b-3uswcvzlvu] {
  background: #fff7ed;
  color: #f97316;
}

.type-option:nth-child(3) .type-icon[b-3uswcvzlvu] {
  background: #f0fdf4;
  color: var(--student-green);
}

.type-option.selected .type-icon[b-3uswcvzlvu] {
  background: var(--student-navy);
  color: white;
}

.type-text[b-3uswcvzlvu] {
  flex: 1;
}

.type-name[b-3uswcvzlvu] {
  font-size: .96rem;
  font-weight: 700;
  color: var(--student-navy);
  margin-bottom: 4px;
}

.type-desc[b-3uswcvzlvu] {
  font-size: .82rem;
  color: var(--student-text-muted);
}

.type-check[b-3uswcvzlvu] {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--student-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}

.type-option.selected .type-check[b-3uswcvzlvu] {
  background: var(--student-navy);
  border-color: var(--student-navy);
  color: white;
  font-size: .75rem;
}

.application-type-radio[b-3uswcvzlvu] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.degree-options[b-3uswcvzlvu] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.degree-chip[b-3uswcvzlvu] {
  position: relative;
  margin: 0;
}

.degree-chip input[b-3uswcvzlvu] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.degree-chip span[b-3uswcvzlvu] {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--student-border);
  border-radius: 999px;
  color: var(--student-text-muted);
  background: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.1;
  transition: border-color .15s, background .15s, color .15s;
}

.degree-chip input:checked + span[b-3uswcvzlvu] {
  border-color: var(--student-navy);
  background: var(--student-navy);
  color: #fff;
}

.disabled-option[b-3uswcvzlvu] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.2);
}

.closed-badge[b-3uswcvzlvu] {
    margin-top: .45rem;
    display: inline-flex;
    align-items: center;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: #fff3cd;
    color: #856404;
    font-size: .72rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
  .type-option[b-3uswcvzlvu] {
    padding: 18px;
    gap: 14px;
  }
}

@media (max-width: 575.98px) {
  .type-option[b-3uswcvzlvu] {
    padding: 14px;
    gap: 10px;
    align-items: flex-start;
  }

  .type-icon[b-3uswcvzlvu] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .type-name[b-3uswcvzlvu] {
    font-size: 0.9rem;
  }

  .type-desc[b-3uswcvzlvu] {
    font-size: 0.78rem;
  }

  .type-check[b-3uswcvzlvu] {
    margin-top: 2px;
  }
}
/* /Areas/Student/Pages/Dashboard/Index.cshtml.rz.scp.css */
/* Dashboard-specific overrides and unique styles */

.topbar[b-yr3nm6ysly] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  gap: 14px;
}

.topbar-actions[b-yr3nm6ysly] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.welcome-text h1[b-yr3nm6ysly] {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--student-navy);
  letter-spacing: -.5px;
}

.welcome-text p[b-yr3nm6ysly] {
  margin-top: 5px;
  color: var(--student-text-muted);
  font-size: .9rem;
}

.today-chip[b-yr3nm6ysly] {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--student-border);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: .78rem;
  color: var(--student-text-muted);
  font-weight: 500;
}

.today-chip i[b-yr3nm6ysly] {
  color: var(--student-accent);
}

.btn-new[b-yr3nm6ysly] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--student-navy);
  color: white;
  padding: 11px 22px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .1s;
  box-shadow: 0 2px 8px rgba(11, 22, 40, .2);
}

.btn-new:hover[b-yr3nm6ysly] {
  background: var(--student-navy-light);
  box-shadow: 0 6px 20px rgba(11, 22, 40, .25);
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.btn-dot[b-yr3nm6ysly] {
  width: 20px;
  height: 20px;
  background: var(--student-accent);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--student-navy);
}

.stats-row[b-yr3nm6ysly] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.stat-card[b-yr3nm6ysly] {
  background: white;
  border: 1px solid var(--student-border);
  border-radius: var(--student-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}

.stat-card:hover[b-yr3nm6ysly] {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
}

.stat-card[b-yr3nm6ysly]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.stat-card.drafts[b-yr3nm6ysly]::after {
  background: #94a3b8;
}

.stat-card.progress[b-yr3nm6ysly]::after {
  background: var(--student-blue-bright);
}

.stat-card.done[b-yr3nm6ysly]::after {
  background: var(--student-green);
}

.stat-icon[b-yr3nm6ysly] {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-card.drafts .stat-icon[b-yr3nm6ysly] {
  background: #f1f5f9;
  color: #64748b;
}

.stat-card.progress .stat-icon[b-yr3nm6ysly] {
  background: #eff6ff;
  color: var(--student-blue-bright);
}

.stat-card.done .stat-icon[b-yr3nm6ysly] {
  background: #f0fdf4;
  color: var(--student-green);
}

.stat-card > div[b-yr3nm6ysly] {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-value[b-yr3nm6ysly] {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--student-navy);
}

.stat-label[b-yr3nm6ysly] {
  font-size: .78rem;
  color: var(--student-text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-card.progress[b-yr3nm6ysly] {
  padding-top: 50px;
  padding-bottom: 53px;
}

.section-header[b-yr3nm6ysly] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-title[b-yr3nm6ysly] {
  font-size: 1rem;
  font-weight: 700;
  color: var(--student-navy);
}

.view-all[b-yr3nm6ysly] {
  font-size: .8rem;
  font-weight: 600;
  color: var(--student-blue-bright);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all:hover[b-yr3nm6ysly] {
  text-decoration: underline;
}

/* TYPE BADGES */

.type-badge[b-yr3nm6ysly] {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Internal → Blue */
.type-internal[b-yr3nm6ysly] {
    background: #eff6ff;
    color: #2563eb;
}

/* External → Purple */
.type-external[b-yr3nm6ysly] {
    background: #f5f3ff;
    color: #7c3aed;
}

/* InterFaculty → Orange */
.type-interfaculty[b-yr3nm6ysly] {
    background: #fff7ed;
    color: #ea580c;
}

/* Fallback */
.type-default[b-yr3nm6ysly] {
    background: #f1f5f9;
    color: #64748b;
}

.status-badge[b-yr3nm6ysly] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-badge[b-yr3nm6ysly]::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-submitted[b-yr3nm6ysly] {
  background: #eff6ff;
  color: #3b82f6;
}

.status-submitted[b-yr3nm6ysly]::before {
  background: #3b82f6;
}

.status-review[b-yr3nm6ysly] {
  background: #fefce8;
  color: #b45309;
}

.status-review[b-yr3nm6ysly]::before {
  background: #f59e0b;
}

.status-accepted[b-yr3nm6ysly] {
  background: #f0fdf4;
  color: #16a34a;
}

.status-accepted[b-yr3nm6ysly]::before {
  background: var(--student-green);
}

.status-returned[b-yr3nm6ysly] {
  background: #fff7ed;
  color: #c2410c;
}

.status-returned[b-yr3nm6ysly]::before {
  background: #f97316;
}

.status-default[b-yr3nm6ysly] {
  background: #f1f5f9;
  color: #64748b;
}

.status-default[b-yr3nm6ysly]::before {
  background: #94a3b8;
}

.empty-state[b-yr3nm6ysly] {
  text-align: center;
  padding: 60px 30px;
  color: var(--student-text-muted);
}

.empty-icon[b-yr3nm6ysly] {
  font-size: 2.5rem;
  opacity: .25;
  margin-bottom: 12px;
}

.empty-state p[b-yr3nm6ysly] {
  font-size: .88rem;
}

@media (max-width: 767.98px) {
  .welcome-text h1[b-yr3nm6ysly] {
    font-size: 1.45rem;
  }

  .stats-row[b-yr3nm6ysly] {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
  }

  .stat-card[b-yr3nm6ysly] {
    padding: 18px;
  }

  .stat-card.progress[b-yr3nm6ysly] {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 991.98px) {
  .topbar[b-yr3nm6ysly] {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .topbar-actions[b-yr3nm6ysly] {
    width: 100%;
    justify-content: flex-start;
  }

  .stats-row[b-yr3nm6ysly] {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .stat-card[b-yr3nm6ysly] {
    padding: 20px;
  }

  .stat-card.progress[b-yr3nm6ysly] {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .apps-table-head[b-yr3nm6ysly],
  .app-row[b-yr3nm6ysly] {
    min-width: 850px;
  }
}

@media (max-width: 575.98px) {
  .welcome-text h1[b-yr3nm6ysly] {
    font-size: 1.3rem;
  }

  .welcome-text p[b-yr3nm6ysly] {
    font-size: 0.84rem;
  }

  .today-chip[b-yr3nm6ysly],
  .btn-new[b-yr3nm6ysly] {
    width: 100%;
    justify-content: center;
  }

  .stats-row[b-yr3nm6ysly] {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card[b-yr3nm6ysly] {
    padding: 16px;
  }

  .section-header[b-yr3nm6ysly] {
    flex-wrap: wrap;
    gap: 8px;
  }

  .apps-table-head[b-yr3nm6ysly],
  .app-row[b-yr3nm6ysly] {
    padding-left: 16px;
    padding-right: 16px;
  }

  .empty-state[b-yr3nm6ysly] {
    padding: 40px 20px;
  }
}

@keyframes fadeUp-b-yr3nm6ysly {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate[b-yr3nm6ysly] {
  animation: fadeUp-b-yr3nm6ysly .35s ease both;
}

.delay-1[b-yr3nm6ysly] {
  animation-delay: .05s;
}

.delay-2[b-yr3nm6ysly] {
  animation-delay: .10s;
}

.delay-3[b-yr3nm6ysly] {
  animation-delay: .15s;
}

.delay-4[b-yr3nm6ysly] {
  animation-delay: .20s;
}


/* =========================
   TABLE CONTAINER
========================= */

.apps-table[b-yr3nm6ysly] {
    background: white;
    border: 1px solid var(--student-border);
    border-radius: var(--student-radius);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
}

/* =========================
   TABLE HEADERS
========================= */

.apps-table-head[b-yr3nm6ysly],
.app-row[b-yr3nm6ysly] {
    display: grid;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    min-width: 900px;
}

.apps-table-head[b-yr3nm6ysly] {
    background: var(--student-surface-2);
    border-bottom: 1px solid var(--student-border);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--student-text-muted);
}

.app-row[b-yr3nm6ysly] {
    border-bottom: 1px solid var(--student-border);
    transition: background .12s ease;
}

    .app-row:last-child[b-yr3nm6ysly] {
        border-bottom: none;
    }

    .app-row:hover[b-yr3nm6ysly] {
        background: #fafbfd;
    }

/* =========================
   EDITABLE TABLE
========================= */

.apps-table.editable .apps-table-head[b-yr3nm6ysly],
.apps-table.editable .app-row[b-yr3nm6ysly] {
    grid-template-columns: 220px /* ID */
    160px /* Type */
    150px /* Date */
    160px /* Status */
    220px; /* Actions */
}

/* =========================
   LOCKED TABLE
========================= */

.apps-table.locked .apps-table-head[b-yr3nm6ysly],
.apps-table.locked .app-row[b-yr3nm6ysly] {
    grid-template-columns: 220px /* ID */
    180px /* Type */
    180px /* Status */
    150px; /* Date */
}

/* =========================
   CELL STYLES
========================= */

.app-id[b-yr3nm6ysly] {
    font-family: 'DM Mono', monospace;
    font-size: .78rem;
    font-weight: 500;
    color: var(--student-navy);
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-date[b-yr3nm6ysly] {
    font-size: .78rem;
    color: var(--student-text-muted);
    font-family: 'DM Mono', monospace;
}

.draft-actions[b-yr3nm6ysly] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.btn-edit[b-yr3nm6ysly],
.btn-delete[b-yr3nm6ysly] {
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .15s;
}

.btn-edit[b-yr3nm6ysly] {
    background: #eff6ff;
    color: #2563eb;
}

    .btn-edit:hover[b-yr3nm6ysly] {
        background: #dbeafe;
    }

.btn-delete[b-yr3nm6ysly] {
    background: #fef2f2;
    color: #dc2626;
}

    .btn-delete:hover[b-yr3nm6ysly] {
        background: #fee2e2;
    }
/* /Areas/Student/Pages/Profile/Index.cshtml.rz.scp.css */
/* ── Profile Page Layout ───────────────────────────── */

.profile-form-panel[b-6ao82m7vua] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2rem;
    overflow-y: auto;
    background: #fff;
}

.profile-form-inner[b-6ao82m7vua] {
    width: 100%;
    max-width: 520px;
    animation: fadeInUp-b-6ao82m7vua .55s ease-out both;
}

    /* ── Typography ───────────────────────────────────── */

    .profile-form-inner h2[b-6ao82m7vua] {
        font-size: 1.85rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: .35rem;
    }

.subtitle[b-6ao82m7vua] {
    color: #6c757d;
    font-size: .93rem;
    line-height: 1.55;
}

.field-section-label[b-6ao82m7vua] {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #adb5bd;
    margin: 1.4rem 0 .65rem;
}

/* ── Back Link ────────────────────────────────────── */

.back-link[b-6ao82m7vua] {
    font-size: .84rem;
    font-weight: 600;
    color: var(--bs-primary);
    transition: .2s ease;
}

    .back-link:hover[b-6ao82m7vua] {
        color: var(--bs-info);
    }

/* ── Form Controls ────────────────────────────────── */

.form-floating[b-6ao82m7vua] {
    margin-bottom: 1rem;
}

.profile-form-inner .row .form-floating[b-6ao82m7vua] {
    margin-bottom: 0;
}

.form-control[b-6ao82m7vua],
.form-select[b-6ao82m7vua] {
    border: 2px solid #e9ecef;
    border-radius: .5rem;
    font-size: .95rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .form-control:focus[b-6ao82m7vua],
    .form-select:focus[b-6ao82m7vua] {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.15);
    }

.form-floating > label[b-6ao82m7vua] {
    color: #6c757d;
    font-size: .9rem;
}

/* ── Validation ───────────────────────────────────── */

.text-danger[b-6ao82m7vua] {
    font-size: .82rem;
}

/* ── Success Alert ────────────────────────────────── */

.alert[b-6ao82m7vua] {
    border-radius: .5rem;
    border: none;
    font-size: .9rem;
}

/* ── Save Button ──────────────────────────────────── */

.btn-primary[b-6ao82m7vua] {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    color: #000;
    font-weight: 700;
    padding: .875rem;
    border-radius: .5rem;
    font-size: .97rem;
    transition: .3s ease;
    box-shadow: 0 4px 15px rgba(255,193,7,.3);
}

    .btn-primary:hover[b-6ao82m7vua] {
        background: linear-gradient(135deg, #ffcd38 0%, #ffa726 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,193,7,.4);
        color: #000;
    }

/* ── Animation ────────────────────────────────────── */

@keyframes fadeInUp-b-6ao82m7vua {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 767.98px) {

    .profile-form-panel[b-6ao82m7vua] {
        padding: 2rem 1.25rem;
    }

    .profile-form-inner[b-6ao82m7vua] {
        max-width: 100%;
    }

        .profile-form-inner h2[b-6ao82m7vua] {
            font-size: 1.55rem;
        }
}
/* /Areas/Student/Pages/Shared/_ApplicationStepper.cshtml.rz.scp.css */
/* Stepper component — scoped context */

/* All stepper styles already in site.css, this file is a placeholder for future overrides */
/* /Pages/Index.cshtml.rz.scp.css */
/* Remove default padding for landing page */
.min-vh-100[b-6e0szxzqz0] {
    margin: 0 !important;
}

/* Hero Section with Image */
.hero-gradient[b-6e0szxzqz0] {
    background: linear-gradient(135deg, 
        rgba(13, 110, 253, 0.85) 0%, 
        rgba(13, 202, 240, 0.75) 100%),
        url('/images/FS1-Campus.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.hero-gradient[b-6e0szxzqz0]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(13, 110, 253, 0.7) 0%, 
        rgba(13, 202, 240, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-gradient[b-6e0szxzqz0]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    pointer-events: none;
    z-index: 1;
}

.hero-gradient .container[b-6e0szxzqz0] {
    position: relative;
    z-index: 2;
}

.hero-gradient h1[b-6e0szxzqz0],
.hero-gradient p[b-6e0szxzqz0],
.hero-gradient .btn[b-6e0szxzqz0] {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-gradient h1[b-6e0szxzqz0] {
    color: #ffffff !important;
}

.hero-gradient .text-primary[b-6e0szxzqz0] {
    color: #ffc107 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-gradient p.lead[b-6e0szxzqz0] {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Step Circle - Enhanced Design */
.step-circle[b-6e0szxzqz0] {
    width: 5rem;
    height: 5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-info) 100%);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25),
                0 0 0 0 rgba(13, 110, 253, 0.4);
    border: 4px solid white;
}

.step-item:hover .step-circle[b-6e0szxzqz0] {
    transform: scale(1.15) translateY(-8px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4),
                0 0 0 8px rgba(13, 110, 253, 0.1);
    border-color: #ffc107;
}

.step-circle i[b-6e0szxzqz0] {
    font-size: 1.75rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Step Badge Positioning - Enhanced */
.step-badge[b-6e0szxzqz0] {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    z-index: 3;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

[dir="rtl"] .step-badge[b-6e0szxzqz0] {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

/* Timeline Connector - Enhanced */
@media (min-width: 992px) {
    .timeline-connector[b-6e0szxzqz0] {
        position: absolute;
        top: 2.5rem;
        left: 10%;
        right: 10%;
        height: 4px;
        background: linear-gradient(90deg, 
            rgba(13, 110, 253, 0.15) 0%,
            rgba(13, 110, 253, 0.3) 25%,
            rgba(13, 202, 240, 0.3) 75%,
            rgba(13, 202, 240, 0.15) 100%);
        z-index: 0;
        border-radius: 2px;
        overflow: hidden;
    }

    .timeline-connector[b-6e0szxzqz0]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%,
            rgba(255, 193, 7, 0.4) 50%,
            transparent 100%);
        animation: shimmer-b-6e0szxzqz0 3s infinite;
    }

    @keyframes shimmer-b-6e0szxzqz0 {
        0% {
            left: -100%;
        }
        100% {
            left: 200%;
        }
    }

    [dir="rtl"] .timeline-connector[b-6e0szxzqz0] {
        background: linear-gradient(270deg, 
            rgba(13, 110, 253, 0.15) 0%,
            rgba(13, 110, 253, 0.3) 25%,
            rgba(13, 202, 240, 0.3) 75%,
            rgba(13, 202, 240, 0.15) 100%);
    }

    /* Connection dots on the line */
    .step-item[b-6e0szxzqz0]::after {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
        background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-info) 100%);
        border-radius: 50%;
        z-index: 1;
        box-shadow: 0 0 0 4px white, 0 0 0 6px rgba(13, 110, 253, 0.2);
        transition: all 0.3s ease;
    }

    .step-item:hover[b-6e0szxzqz0]::after {
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 0 0 0 4px white, 0 0 0 8px rgba(255, 193, 7, 0.3);
    }
}

/* Step Item Animation - Enhanced */
.step-item[b-6e0szxzqz0] {
    animation: fadeInUp-b-6e0szxzqz0 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
}

@keyframes fadeInUp-b-6e0szxzqz0 {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays for steps */
.step-item:nth-child(1)[b-6e0szxzqz0] {
    animation-delay: 0.1s;
}

.step-item:nth-child(2)[b-6e0szxzqz0] {
    animation-delay: 0.2s;
}

.step-item:nth-child(3)[b-6e0szxzqz0] {
    animation-delay: 0.3s;
}

.step-item:nth-child(4)[b-6e0szxzqz0] {
    animation-delay: 0.4s;
}

/* Step Card Enhancement */
.step-item[b-6e0szxzqz0] {
    transition: transform 0.3s ease;
}

.step-item:hover[b-6e0szxzqz0] {
    transform: translateY(-5px);
}

.step-item h3[b-6e0szxzqz0] {
    color: var(--bs-dark);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.step-item:hover h3[b-6e0szxzqz0] {
    color: var(--bs-primary);
}

.step-item p[b-6e0szxzqz0] {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Add subtle background to step items on hover */
.step-item[b-6e0szxzqz0]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.step-item:hover[b-6e0szxzqz0]::before {
    width: 280px;
    height: 280px;
}

/* Hero Animations */
.animate-fade-in[b-6e0szxzqz0] {
    animation: fadeIn-b-6e0szxzqz0 0.8s ease-out forwards;
}

.animate-fade-in-delay[b-6e0szxzqz0] {
    animation: fadeIn-b-6e0szxzqz0 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2[b-6e0szxzqz0] {
    animation: fadeIn-b-6e0szxzqz0 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn-b-6e0szxzqz0 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Notification Icon */
.pulse-animation[b-6e0szxzqz0] {
    animation: pulse-b-6e0szxzqz0 2s ease-in-out infinite;
}

@keyframes pulse-b-6e0szxzqz0 {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--bs-info-rgb), 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(var(--bs-info-rgb), 0);
    }
}

/* Button Enhancements */
.btn-lg[b-6e0szxzqz0] {
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-lg:hover[b-6e0szxzqz0] {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-lg:active[b-6e0szxzqz0] {
    transform: translateY(0);
}

/* Improved Responsive Typography */
@media (max-width: 767.98px) {
    .display-3[b-6e0szxzqz0] {
        font-size: 2.5rem;
    }
    
    .display-6[b-6e0szxzqz0] {
        font-size: 1.75rem;
    }
    
    .step-circle[b-6e0szxzqz0] {
        width: 4rem;
        height: 4rem;
    }

    .step-circle i[b-6e0szxzqz0] {
        font-size: 1.5rem;
    }

    .step-badge[b-6e0szxzqz0] {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    /* Mobile timeline - vertical line */
    .timeline-connector[b-6e0szxzqz0] {
        display: none;
    }

    .step-item[b-6e0szxzqz0]::after {
        display: none;
    }

    .step-item[b-6e0szxzqz0]::before {
        max-width: 250px;
        max-height: 250px;
    }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
    .step-circle[b-6e0szxzqz0] {
        width: 4.5rem;
        height: 4.5rem;
    }

    .timeline-connector[b-6e0szxzqz0] {
        display: none;
    }

    .step-item[b-6e0szxzqz0]::after {
        display: none;
    }
}

/* Accessibility Improvements */
.step-item:focus-within .step-circle[b-6e0szxzqz0] {
    outline: 3px solid rgba(var(--bs-primary-rgb), 0.5);
    outline-offset: 3px;
}

/* Better contrast for better readability */
.bg-light[b-6e0szxzqz0] {
    background-color: #f8f9fa !important;
}

/* Section header decoration */
#how-it-works-heading[b-6e0szxzqz0] {
    position: relative;
    display: inline-block;
}

#how-it-works-heading[b-6e0szxzqz0]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--bs-primary) 0%, 
        var(--bs-info) 100%);
    border-radius: 2px;
}

/* Steps section container enhancement */
.bg-light.border-top.border-bottom[b-6e0szxzqz0] {
    border-color: rgba(13, 110, 253, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(13, 110, 253, 0.05);
}

/* Smooth section transitions */
section[b-6e0szxzqz0] {
    transition: background-color 0.3s ease;
}

/* Remove container padding for full-width sections */
.bg-white > section:first-child[b-6e0szxzqz0] {
    margin-top: 0;
}

section.py-5:first-of-type[b-6e0szxzqz0] {
    padding-top: 0 !important;
}

/* Educational accent elements */
.hero-gradient .btn-primary[b-6e0szxzqz0] {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.hero-gradient .btn-primary:hover[b-6e0szxzqz0] {
    background: linear-gradient(135deg, #ffcd38 0%, #ffa726 100%);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    color: #000;
}

/* Decorative academic elements */
.hero-gradient .container[b-6e0szxzqz0]::before {
    content: '🎓';
    position: absolute;
    font-size: 100px;
    opacity: 0.1;
    top: -30px;
    right: 10%;
    pointer-events: none;
    animation: float-b-6e0szxzqz0 6s ease-in-out infinite;
}

[dir="rtl"] .hero-gradient .container[b-6e0szxzqz0]::before {
    right: auto;
    left: 10%;
}

@keyframes float-b-6e0szxzqz0 {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Academic color accents */
.bg-primary[b-6e0szxzqz0] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-info) 100%) !important;
}

/* Responsive hero height */
@media (max-width: 767.98px) {
    .hero-gradient[b-6e0szxzqz0] {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .hero-gradient .container[b-6e0szxzqz0]::before {
        font-size: 60px;
        top: -20px;
    }
}

@media (max-width: 991.98px) {
    .hero-gradient .container[b-6e0szxzqz0] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-gradient p.lead[b-6e0szxzqz0] {
        max-width: 100% !important;
        font-size: 1.08rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero-gradient[b-6e0szxzqz0] {
        min-height: 58vh;
    }

    .hero-gradient h1.display-3[b-6e0szxzqz0] {
        font-size: 2rem;
    }

    .hero-gradient p.lead[b-6e0szxzqz0] {
        font-size: 0.96rem !important;
    }

    .hero-gradient .btn[b-6e0szxzqz0] {
        width: 100%;
        justify-content: center;
    }

    .step-circle[b-6e0szxzqz0] {
        width: 3.5rem;
        height: 3.5rem;
    }

    .step-circle i[b-6e0szxzqz0] {
        font-size: 1.2rem;
    }

    .step-item h3[b-6e0szxzqz0] {
        font-size: 1rem;
    }

    .step-item p[b-6e0szxzqz0] {
        font-size: 0.85rem;
    }
}
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-bkvk6q7b90] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-bkvk6q7b90] {
  color: #0077cc;
}

.btn-primary[b-bkvk6q7b90] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-bkvk6q7b90], .nav-pills .show > .nav-link[b-bkvk6q7b90] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-bkvk6q7b90] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-bkvk6q7b90] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-bkvk6q7b90] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-bkvk6q7b90] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-bkvk6q7b90] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
