/* CSS Variables - Design System */
:root {
  /* Colors */
  --background: 220 40% 98%;
  --foreground: 224 71% 4%;
  --card: 0 0% 100%;
  --card-foreground: 224 71% 4%;
  --popover: 0 0% 100%;
  --popover-foreground: 224 71% 4%;
  --primary: 210 85% 45%;
  --primary-foreground: 210 40% 98%;
  --secondary: 220 14% 96%;
  --secondary-foreground: 220 9% 46%;
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;
  --accent: 220 14% 96%;
  --accent-foreground: 220 9% 46%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 98%;
  --success: 142 71% 45%;
  --success-foreground: 210 40% 98%;
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 210 85% 45%;
  --radius: 0.5rem;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(210 85% 45%) 0%, hsl(210 85% 65%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(220 40% 98%) 0%, hsl(220 14% 96%) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-elegant: 0 10px 30px -10px hsl(210 85% 45% / 0.3);

  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --background: 224 71% 4%;
  --foreground: 210 40% 98%;
  --card: 224 71% 4%;
  --card-foreground: 210 40% 98%;
  --popover: 224 71% 4%;
  --popover-foreground: 210 40% 98%;
  --primary: 210 85% 65%;
  --primary-foreground: 224 71% 4%;
  --secondary: 215 28% 17%;
  --secondary-foreground: 210 40% 98%;
  --muted: 215 28% 17%;
  --muted-foreground: 217 11% 65%;
  --accent: 215 28% 17%;
  --accent-foreground: 210 40% 98%;
  --border: 215 28% 17%;
  --input: 215 28% 17%;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  font-size: 14px;
}

/* Truncate long labels in pills and show ellipsis */
.category-bar-wrapper .descriptive-category span {
  display: inline-block;
  max-width: 7.5rem; /* allow a modest width before truncating */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.nav-brand h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

.nav-brand p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
}

.nav-item {
  background: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.nav-item:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.nav-item.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

/* Main Content */
.main {
  padding: 2rem 0;
  min-height: calc(100vh - 80px);
}

.section {
  display: none;
}

.section.active {
  display: block;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(to right, 
    hsl(0, 60%, 96%) 0%, 
    hsl(45, 65%, 96%) 100%
  ); /* RMU themed header background */
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid hsl(45, 65%, 70%);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.05);
}

/* RMU-themed section styling */
#descriptive, #reflective {
  background: linear-gradient(to bottom, 
    hsl(var(--background)) 0%, 
    hsl(0, 60%, 98%) 10%, 
    hsl(45, 65%, 98%) 90%, 
    hsl(var(--background)) 100%
  ); /* Subtle RMU gradient background */
  padding: 2rem 1rem;
  border-radius: calc(var(--radius) * 2);
  margin: 1rem 0;
}

/* Sticky category bar: when descriptive section active, keep the bar visible under header */
#descriptive .category-bar-wrapper {
  position: sticky;
  top: 72px; /* header height + small gap */
  z-index: 90;
  background: linear-gradient(to right, hsl(0, 60%, 95%), hsl(45, 65%, 95%)); /* RMU themed gradient */
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(0, 60%, 35%); /* RMU Maroon */
  margin-bottom: 0.5rem;
  font-family: 'Times New Roman', serif;
  border-bottom: 2px solid hsl(45, 65%, 60%); /* RMU Gold accent */
  padding-bottom: 0.5rem;
  display: inline-block;
}

.section-header p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cards */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  overflow: hidden;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.card-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.card-content {
  padding: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(0, 60%, 35%) 0%, hsl(0, 60%, 40%) 100%); /* RMU Maroon gradient */
  color: white;
  border-color: hsl(0, 60%, 35%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, hsl(0, 60%, 30%) 0%, hsl(0, 60%, 35%) 100%); /* Darker on hover */
  border-color: hsl(0, 60%, 30%);
}

.btn-success {
  background: hsl(var(--success));
  color: hsl(var(--success-foreground));
  border-color: hsl(var(--success));
}

.btn-success:hover {
  background: hsl(var(--success) / 0.9);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}

.btn-outline:hover {
  background: hsl(var(--muted));
}

.icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

/* Edit Controls */
.edit-controls {
  display: flex;
  gap: 0.5rem;
}

/* Profile Section */
.profile-section {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.profile-image-container {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid hsl(var(--primary) / 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, hsl(var(--muted) / 0.6), hsl(var(--card)));
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  font-size: 2rem;
}

.profile-info {
  flex: 1;
  min-width: 260px;
}

.form-group label { color: hsl(var(--foreground)); font-weight:600; }

/* CMS Attendance quick link - small modern pill style */
.cms-attendance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.65rem;
  background: linear-gradient(180deg, hsl(var(--accent) / 0.08), transparent);
  border: 1px solid hsla(210,8%,60%,0.12);
  border-radius: 999px;
  color: hsl(var(--accent-foreground));
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.cms-attendance svg { color: hsl(var(--accent-foreground)); }
.cms-attendance:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(30,40,60,0.06); }
.form-group span { display:block; padding:0.4rem 0; color: hsl(var(--muted-foreground)); }

.edit-controls { gap: 0.5rem; }

/* make save and cancel visible when editing via JS toggles - 'hidden' class exists */

.profile-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 4px solid hsl(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-fallback {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  font-size: 2rem;
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-info {
  flex: 1;
  min-width: 300px;
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center; /* ensure vertical alignment for rows with inline links */
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-group input[readonly] {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
}

.form-group textarea[readonly] {
  background: transparent;
  border: none;
  padding: 0;
  resize: none;
}

.display-value {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  line-height: 1.5;
}

.title-display {
  color: hsl(var(--primary));
}

.bio-display {
  color: hsl(var(--muted-foreground));
  font-weight: 400;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: hsl(var(--muted) / 0.5);
  border-radius: calc(var(--radius) * 1.5);
  transition: var(--transition-smooth);
}

.contact-item:hover {
  background: hsl(var(--muted) / 0.7);
}

.contact-icon {
  padding: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-icon .icon {
  color: hsl(var(--primary));
}

.contact-content {
  flex: 1;
}

.contact-content label {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.25rem;
}

.contact-content .display-value {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
}

.contact-content input {
  margin-top: 0.25rem;
}

/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: hsl(var(--muted) / 0.5);
  border-radius: calc(var(--radius) * 1.5);
  transition: var(--transition-smooth);
}

.social-item:hover {
  background: hsl(var(--muted) / 0.7);
}

.social-icon {
  padding: 0.5rem;
  background: hsl(var(--secondary) / 0.1);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.social-icon .icon {
  color: hsl(var(--secondary-foreground));
}

.social-content {
  flex: 1;
}

.social-content label {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.25rem;
}

.social-content .display-value {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-content input {
  margin-top: 0.25rem;
}

/* Search and Filter */
.search-container {
  position: relative;
}

.search-input {
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  width: 250px;
}

.search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
  pointer-events: none;
}

.filter-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(45, 65%, 60%); /* RMU Gold border */
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(0, 60%, 35%); /* RMU Maroon text */
  font-size: 0.875rem;
  cursor: pointer;
  font-family: 'Times New Roman', serif;
}

.filter-select:focus {
  outline: none;
  border-color: hsl(0, 60%, 35%);
  box-shadow: 0 0 0 2px hsl(0, 60%, 35% / 0.2);
}

/* Full-width Category Bar (Descriptive Portfolio) */
.category-bar-wrapper {
  /* Fit within the page width but visually span edge-to-edge without causing horizontal scroll */
  width: 100%;
  max-width: 1200px;
  margin: 0.5rem auto 1rem;
  background: linear-gradient(to right, hsl(0, 60%, 95%), hsl(45, 65%, 95%)); /* RMU themed gradient */
  border: 2px solid hsl(45, 65%, 60%); /* RMU Gold border */
  border-radius: calc(var(--radius) * 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15); /* RMU maroon shadow */
  padding: 0; /* remove extra wrapper padding so bar is slimmer */
}

.category-bar-wrapper .descriptive-category {
  /* Prefer a narrower width per pill so more categories fit across the bar */
  flex: 1 1 120px; /* preferred basis 120px, will shrink/grow as needed */
  min-width: 80px;
  max-width: 220px;
  text-align: center;
  /* Reduced vertical padding to make the bar shorter */
  padding: 0.55rem 0.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: hsl(0, 60%, 45%); /* RMU Maroon for text */
  transition: var(--transition-smooth);
  position: relative;
  letter-spacing: 0.02em;
  font-family: 'Times New Roman', serif;
}

.category-bar-wrapper .descriptive-category:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: hsl(45, 65%, 60%); /* RMU Gold divider */
  opacity: 0.7;
}

.category-bar-wrapper .descriptive-category:hover {
  background: hsl(45, 65%, 85%); /* RMU Gold hover */
  color: hsl(0, 60%, 25%); /* Darker maroon on hover */
}

.category-bar-wrapper .descriptive-category.active {
  /* Active category uses RMU maroon gradient */
  background: linear-gradient(90deg, hsl(0, 60%, 40%), hsl(0, 60%, 30%));
  color: white;
  box-shadow: 0 3px 8px -6px hsl(0, 60%, 35% / 0.6) inset;
}

/* Icon inside category pill */
.category-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  stroke-width: 1.8;
  display: inline-block;
  vertical-align: middle;
}
.descriptive-category span { vertical-align: middle; }

@media (max-width: 768px) {
  .category-bar-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* stack by default */
    gap: 0.5rem;
    padding: 0.5rem;
    width: 100%;
  }
  .category-bar-wrapper .descriptive-category:not(:last-child)::after { content: none; }
}

/* Mobile-only select: hidden on larger screens */
.mobile-descriptive-select {
  display: none;
}

@media (max-width: 520px) {
  /* On small/mobile screens show a compact UI: keep only the 'All' pill visible and show a select for other categories */
  .category-bar-wrapper {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  /* Hide all pills except the first (All) to keep UI compact */
  .category-bar-wrapper .descriptive-category { display: none; }
  .category-bar-wrapper .descriptive-category:first-child { display: inline-flex; align-items: center; }

  .mobile-descriptive-select {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: calc(var(--radius) * 0.6);
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    font-weight: 600;
  }
}

/* Very small screens: icon-only compact mode and horizontal scroll fallback */
@media (max-width: 420px) {
  .category-bar-wrapper {
    display: flex;
    gap: 0.25rem;
    padding: 0.35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .category-bar-wrapper .descriptive-category {
    flex: 0 0 auto;
    padding: 0.45rem 0.5rem;
    min-width: 3rem;
  }
  /* Only show icons (hide labels) in icon-only compact mode */
  .category-bar-wrapper .descriptive-category span { display: none; }
  .category-bar-wrapper .descriptive-category .category-icon { margin-right: 0; }
}

/* Mobile select active styling: match pill active color */
.mobile-descriptive-select.active {
  background: linear-gradient(90deg, hsl(0, 60%, 40%), hsl(0, 60%, 30%)); /* RMU Maroon */
  color: white;
  border-color: hsl(0, 60%, 35%);
}
/* Achievements Grid */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  background: linear-gradient(to bottom right, 
    hsl(0, 60%, 99%) 0%, 
    hsl(45, 65%, 99%) 100%
  ); /* Very subtle RMU gradient */
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid hsl(45, 65%, 85%);
}

/* Category summary cards layout */
#category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.cat-card {
  background: linear-gradient(to bottom right, hsl(var(--card)), hsl(45, 65%, 98%)); /* RMU themed gradient */
  border: 1px solid hsl(45, 65%, 70%); /* RMU Gold border */
  border-left: 3px solid hsl(0, 60%, 35%); /* RMU Maroon accent */
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.08); /* RMU maroon shadow */
  text-align: center;
  transition: var(--transition-smooth);
}

.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.12);
  border-left-color: hsl(45, 65%, 60%); /* Gold accent on hover */
}
.cat-icon svg { width:44px; height:44px; stroke-width:1.2; }
.cat-count { font-size:28px; font-weight:700; margin-top:10px; color: hsl(0, 60%, 35%); } /* RMU Maroon */
.cat-label { font-size:14px; color: hsl(0, 60%, 50%); margin-top:6px; font-family: 'Times New Roman', serif; } /* RMU styled text */

/* Color variants for icons */
.cat-card[data-key="academic"] .cat-icon svg { stroke:#2b8aef; fill:#eaf4ff; }
.cat-card[data-key="clinical"] .cat-icon svg { stroke:#10b981; fill:#ecfdf5; }
.cat-card[data-key="extracurricular"] .cat-icon svg { stroke:#f97316; fill:#fff7ed; }
.cat-card[data-key="research"] .cat-icon svg { stroke:#8b5cf6; fill:#f3e8ff; }

/* Mobile: stack vertically */
@media (max-width: 640px) {
  #category-cards { grid-template-columns: 1fr; }
  .cat-card { flex-direction: row; align-items: center; gap:12px; padding:12px; }
  .cat-count { font-size:22px; }
  .cat-icon svg { width:40px; height:40px; }
}

.achievement-card {
  background: hsl(var(--card));
  border: 1px solid hsl(45, 65%, 70%); /* RMU Gold border */
  border-left: 4px solid hsl(0, 60%, 35%); /* RMU Maroon accent */
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08); /* RMU maroon shadow */
  transition: var(--transition-smooth);
  position: relative;
}

.achievement-card:hover {
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15); /* Enhanced RMU maroon shadow */
  transform: translateY(-2px);
  border-left-color: hsl(45, 65%, 60%); /* Gold accent on hover */
}

.achievement-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.achievement-category {
  padding: 0.25rem 0.75rem;
  border-radius: calc(var(--radius) * 3);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.achievement-category.academic {
  background: hsl(210 85% 45% / 0.1);
  color: hsl(210 85% 45%);
}

.achievement-category.clinical {
  background: hsl(142 71% 45% / 0.1);
  color: hsl(142 71% 45%);
}

.achievement-category.research {
  background: hsl(280 85% 45% / 0.1);
  color: hsl(280 85% 45%);
}

.achievement-category.extracurricular {
  background: hsl(24 96% 52% / 0.1);
  color: hsl(24 96% 52%);
}

.achievement-category.certification {
  background: hsl(25 85% 45% / 0.1);
  color: hsl(25 85% 45%);
}

.achievement-status {
  padding: 0.25rem 0.75rem;
  border-radius: calc(var(--radius) * 3);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.achievement-status.completed {
  background: hsl(142 71% 45% / 0.1);
  color: hsl(142 71% 45%);
}

.achievement-status.in-progress {
  background: hsl(45 85% 45% / 0.1);
  color: hsl(45 85% 45%);
}

.achievement-status.planned {
  background: hsl(220 9% 46% / 0.1);
  color: hsl(220 9% 46%);
}

.achievement-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(0, 60%, 35%); /* RMU Maroon for titles */
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: 'Times New Roman', serif;
}

.achievement-date {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.achievement-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1rem;
}

.achievement-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* Reflections */
.reflections-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  background: linear-gradient(to bottom right, 
    hsl(0, 60%, 99%) 0%, 
    hsl(45, 65%, 99%) 100%
  ); /* Very subtle RMU gradient */
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid hsl(45, 65%, 85%);
}

.reflection-card {
  background: hsl(var(--card));
  border: 1px solid hsl(45, 65%, 70%); /* RMU Gold border */
  border-left: 4px solid hsl(0, 60%, 35%); /* RMU Maroon accent */
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08); /* RMU maroon shadow */
  transition: var(--transition-smooth);
}

.reflection-card:hover {
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15); /* Enhanced RMU maroon shadow */
  transform: translateY(-1px);
  border-left-color: hsl(45, 65%, 60%); /* Gold accent on hover */
}

.reflection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reflection-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reflection-mood {
  padding: 0.25rem 0.75rem;
  border-radius: calc(var(--radius) * 3);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.reflection-mood.positive {
  background: hsl(142 71% 45% / 0.1);
  color: hsl(142 71% 45%);
}

.reflection-mood.challenging {
  background: hsl(0 84% 60% / 0.1);
  color: hsl(0 84% 60%);
}

.reflection-mood.neutral {
  background: hsl(220 9% 46% / 0.1);
  color: hsl(220 9% 46%);
}

.reflection-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(0, 60%, 35%); /* RMU Maroon for titles */
  margin-bottom: 0.5rem;
  font-family: 'Times New Roman', serif;
}

.reflection-date {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.reflection-content {
  color: hsl(var(--foreground));
  line-height: 1.7;
  margin-bottom: 1rem;
  white-space: pre-wrap;
}

.reflection-linked {
  padding: 0.75rem;
  background: hsl(var(--muted) / 0.5);
  border-radius: var(--radius);
  border-left: 4px solid hsl(var(--primary));
  margin-bottom: 1rem;
}

.reflection-linked-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.25rem;
}

.reflection-linked-title {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.reflection-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 1rem;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: hsl(var(--card));
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.modal-close:hover {
  color: hsl(var(--foreground));
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

/* Utilities */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
  }

  .profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .search-input {
    width: 100%;
    max-width: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }

  .achievement-header,
  .reflection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .achievement-actions,
  .reflection-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .card-header,
  .card-content {
    padding: 1rem;
  }

  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .search-input {
    max-width: none;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem;
  }
}

/* Attachment UI: file row, open button and download icon */
.attachment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.attachment-name {
  flex: 1 1 auto;
  font-size: 0.98rem;
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
}
.attachment-name:hover,
.attachment-name:focus {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  outline: none;
  box-shadow: 0 8px 28px rgba(43,138,239,0.14);
}

.attach-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid transparent;
  color: hsl(var(--muted-foreground));
}
.attach-download:hover { background: hsl(var(--muted)); color: hsl(var(--foreground)); }
.icon-download { stroke-width: 1.8; }

/* RMU Portfolio Cover Page Styles */
.rmu-portfolio-container {
    background: hsl(var(--card));
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 2);
    font-family: 'Times New Roman', serif;
    max-width: 64rem;
    margin: 0 auto;
    overflow: hidden;
}

/* Modern 3-Column Layout */
.rmu-modern-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 33.333%;
    min-height: 100vh;
    background: hsl(var(--background));
}

/* Edit Controls */
.rmu-edit-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.rmu-edit-button, .rmu-save-button, .rmu-cancel-button {
    padding: 0.5rem 1rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.rmu-edit-button:hover {
    background-color: hsl(45, 65%, 60%);
    color: hsl(var(--foreground));
}

.rmu-edit-button.active, .rmu-save-button {
    background-color: hsl(142, 71%, 45%);
    color: hsl(0, 0%, 100%);
    border-color: hsl(142, 71%, 45%);
}

.rmu-save-button:hover {
    background-color: hsl(142, 71%, 40%);
}

.rmu-cancel-button {
    background-color: hsl(0, 84%, 60%);
    color: hsl(0, 0%, 100%);
    border-color: hsl(0, 84%, 60%);
}

.rmu-cancel-button:hover {
    background-color: hsl(0, 84%, 55%);
}

/* Profile Picture Column (Right) */
.rmu-profile-column {
    background: hsl(var(--background));
    padding: 0; /* Remove padding for seamless edges */
    display: flex;
    align-items: stretch; /* Stretch to full height */
    justify-content: center;
    position: relative;
    order: 2;
    overflow: hidden; /* Hide any overflow */
}

.rmu-profile-picture-modern {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh; /* Ensure full viewport height */
}

.rmu-profile-img-modern {
    width: 100%;
    min-height: 100vh; /* Full viewport height */
    object-fit: contain; /* Show complete image without cropping */
    object-position: center center; /* Center the image */
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent; /* Preserve PNG transparency */
    /* Remove mix-blend-mode to avoid transparency issues */
    display: block;
}

/* Alternative sizing for images that need to fit width-first */
.rmu-profile-img-modern.fit-width {
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    object-position: center top;
}

.rmu-change-photo-btn-modern {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: 1px solid hsl(var(--primary));
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    z-index: 10;
}

.rmu-change-photo-btn-modern:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px -3px rgba(0, 0, 0, 0.15);
}

.rmu-change-photo-btn-modern .icon {
    width: 0.75rem;
    height: 0.75rem;
}

/* Main Content Area (Left 2 Columns) */
.rmu-content-area {
    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    order: 1;
}

/* Header Section with Logo and Title */
.rmu-header-modern {
    padding-bottom: 2rem;
    border-bottom: 2px solid hsl(45, 65%, 60%);
}

.rmu-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rmu-logo-modern {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    flex-shrink: 0;
}

.rmu-title-modern {
    flex: 1;
}

.rmu-portfolio-title {
    font-family: 'Times New Roman', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: hsl(0, 60%, 35%);
    line-height: 1.1;
    margin: 0;
}

/* Personal Information Fields Container - Now using 2 columns for content */
.rmu-fields-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 1rem 0;
}

.rmu-field-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rmu-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rmu-field-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.rmu-editable-field {
    border: 1px solid transparent;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    background: hsl(var(--background));
    transition: all 0.2s ease;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.rmu-editable-field.cursor-pointer {
    cursor: pointer;
}

.rmu-editable-field:hover {
    border-color: hsl(45, 65%, 60%);
    background: hsl(45, 65%, 60%, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rmu-editable-field:focus {
    outline: none;
    border-color: hsl(0, 60%, 35%);
    background: hsl(0, 60%, 35%, 0.02);
    box-shadow: 0 0 0 3px hsl(0, 60%, 35%, 0.1);
}

.rmu-editable-field input,
.rmu-editable-field textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: 0;
}

.rmu-student-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.rmu-detail-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

.rmu-small-detail-text {
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

/* Professional Bio Section (Modern) */
.rmu-bio-section-modern {
    margin-top: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid hsl(var(--border));
}

.rmu-bio-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(0, 60%, 35%);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.rmu-bio-content {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
    min-height: 4rem;
    padding: 1rem;
    border-radius: 0.375rem;
    background: hsl(var(--background));
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.rmu-bio-content.multiline {
    resize: vertical;
}

/* Footer */
.rmu-footer {
    height: 0.75rem;
    background: linear-gradient(to right, hsl(0, 60%, 35%), hsl(45, 65%, 60%), hsl(0, 60%, 35%));
}

/* Responsive Design */
@media (max-width: 768px) {
    .rmu-modern-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .rmu-profile-column {
        order: 1;
        height: 50vh; /* Fixed height on tablet */
        min-height: 50vh;
        padding: 0;
    }
    
    .rmu-profile-picture-modern {
        min-height: 50vh;
    }
    
    .rmu-profile-img-modern {
        min-height: 50vh !important;
        height: 50vh !important;
    }
    
    .rmu-content-area {
        order: 2;
        padding: 1.5rem;
    }
    
    .rmu-fields-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rmu-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rmu-portfolio-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .rmu-profile-column {
        height: 40vh;
        min-height: 40vh;
    }
    
    .rmu-profile-picture-modern {
        min-height: 40vh;
    }
    
    .rmu-profile-img-modern {
        min-height: 40vh !important;
        height: 40vh !important;
    }
    
    .rmu-content-area {
        padding: 1rem;
    }
    
    .rmu-logo-modern {
        width: 4rem;
        height: 4rem;
    }
    
    .rmu-portfolio-title {
        font-size: 1.5rem;
    }
    
    .rmu-field-column {
        gap: 1.5rem;
    }
    
    .rmu-change-photo-btn-modern {
        bottom: 0.5rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

.rmu-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Legacy styles - kept for backward compatibility if needed */
.rmu-field {
    display: flex;
    flex-direction: column;
}

/* Professional Bio Section (Legacy - keeping for compatibility) */
.rmu-bio-section {
    padding: 2rem;
    border-top: 1px solid hsl(var(--border));
    background-color: hsl(210, 15%, 90%, 0.2);
}

/* CMS Section (Removed from layout but keeping styles for reference) */
.rmu-cms-section {
    padding: 1.5rem;
    background-color: hsl(45, 65%, 60%, 0.1);
    border-top: 1px solid hsl(45, 65%, 60%, 0.3);
    text-align: center;
    display: none; /* Hidden as requested */
}

.rmu-cms-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: hsl(0, 60%, 35%);
    color: hsl(0, 0%, 100%);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.rmu-cms-link:hover {
    background-color: hsl(0, 60%, 31%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Footer */
.rmu-footer {
    height: 0.75rem;
    background: linear-gradient(to right, hsl(0, 60%, 35%), hsl(45, 65%, 60%), hsl(0, 60%, 35%));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rmu-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .rmu-title-section {
        padding: 0;
    }
    
    .rmu-main-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .rmu-field-row {
        grid-template-columns: 1fr;
    }
    
    .rmu-logo img {
        width: 4rem;
        height: 4rem;
    }
    
    .rmu-profile-img {
        width: 6rem;
        height: 6rem;
    }
    
    .rmu-portfolio-title {
        font-size: 2rem;
    }
}

/* ===================================================================
   PDF DESKTOP RENDER OVERRIDES
   Force desktop layout for PDF export containers regardless of viewport
   ================================================================== */
.pdf-desktop-render .rmu-modern-layout {
    display: grid !important;
    grid-template-columns: 1fr 33.333% !important;
    min-height: 100vh !important;
}

.pdf-desktop-render .rmu-fields-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    padding: 1rem 0 !important;
}

.pdf-desktop-render .rmu-content-area {
    order: 1 !important;
    padding: 2rem !important;
}

.pdf-desktop-render .rmu-profile-column {
    order: 2 !important;
    height: auto !important;
    min-height: 400px !important;
    max-height: 600px !important;
}

.pdf-desktop-render .rmu-logo-section {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    flex-direction: row !important;
    text-align: left !important;
}

.pdf-desktop-render .rmu-portfolio-title {
    font-size: 2.25rem !important;
}

/* =============================
   Global Loading Bar (Fancy RMU Style)
   ============================= */
#global-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, rgba(139,69,19,0.08), rgba(178,34,34,0.08));
  z-index: 10000;
  display: none;
  overflow: hidden;
  box-shadow: 0 2px 4px -1px rgba(0,0,0,0.15), 0 1px 3px rgba(139,69,19,0.25);
  backdrop-filter: blur(3px) saturate(140%);
}
#global-loading-bar .glb-progress {
  height: 100%;
  width: 0%;
  background-image: linear-gradient(90deg,#7d1b1b,#b22222,#d97706,#b22222,#7d1b1b);
  background-size: 300% 100%;
  animation: glb-flow 1.35s linear infinite, glb-pulse 3.2s ease-in-out infinite;
  position: relative;
}
#global-loading-bar .glb-progress:before,
#global-loading-bar .glb-progress:after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient( to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100% );
  transform: skewX(-25deg);
  filter: blur(2px);
  opacity: 0.55;
  animation: glb-sheen 2.4s ease-in-out infinite;
  pointer-events: none;
}
#global-loading-bar .glb-progress:after {
  animation-delay: 1.2s;
}
@keyframes glb-flow { 0% { background-position:0 0;} 100% { background-position:300% 0;} }
@keyframes glb-sheen { 0% { left:-150px; } 60% { left:110%; } 100% { left:110%; } }
@keyframes glb-pulse { 0%,100% { filter:brightness(1); } 50% { filter:brightness(1.18); } }
#global-loading-bar.fade-out { transition: opacity .38s ease; opacity:0; }
@media (max-width: 640px) {
  #global-loading-bar { height:5px; box-shadow: 0 2px 6px -1px rgba(0,0,0,0.25); }
}
button.busy-disabled {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
  filter: grayscale(.35) contrast(0.9);
  transition: opacity .25s ease;
}
