/* ========================================
   PARENT PORTAL - MAIN STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
  --primary-color: #155dfc;
  --primary-dark: #1249d8;
  --primary-light: #4080ff;
  --secondary-color: #155dfc;
  --accent-color: #155dfc;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  --bg-light: #f8fafc;
  --error-color: #ef4444;
  --success-color: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body.parent-auth {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: #155dfc;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.parent-auth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

body.parent-auth::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Login Box Container */
.login-box {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow-x: hidden;
  overflow-y: visible;
  background: #ffffff;
  backdrop-filter: blur(20px);
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.card-body {
  padding: 1rem 2.5rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Parent Portal Badge */
.parent-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  text-transform: uppercase;
  max-width: calc(100% - 2rem);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.parent-badge i {
  font-size: 1.125rem;
}

/* Logo Styles */
.login-logo {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.login-logo a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
  max-width: 100%;
}

.login-logo a:hover {
  transform: scale(1.02);
}

.login-logo a:active {
  transform: scale(0.98);
}

.login-logo img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.login-logo a:not(:has(img)) {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Icon Circle (for password reset pages) */
.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
}

.icon-circle i {
  font-size: 2.5rem;
  color: white;
}

/* Page Titles */
.welcome-title,
.page-title {
  text-align: center;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.025em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.welcome-subtitle,
.page-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.page-subtitle {
  padding: 0 1rem;
  line-height: 1.6;
}

.welcome-subtitle i {
  color: var(--primary-color);
  margin-right: 0.25rem;
}

/* Alert Messages */
.alert {
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideDown 0.3s ease;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
}

.alert-success i {
  color: var(--success-color);
  font-size: 1.25rem;
}

/* Form Labels */
.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  display: block;
}

/* Input Groups */
.input-group {
  position: relative;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.input-group-text {
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-left: none;
  border-radius: 0 10px 10px 0;
  color: var(--primary-color);
  padding: 0.8125rem 1rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}

.input-group-text i {
  font-size: 1.125rem;
}

.input-group:focus-within .input-group-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-color: var(--primary-color);
}

/* Form Controls */
.form-control {
  border: 1.5px solid var(--border-color);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  background: #ffffff;
  color: var(--text-primary);
  line-height: 1.5;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-control::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  border-color: var(--primary-color);
  background: #ffffff;
  outline: none;
}

.form-control.is-invalid {
  border-color: var(--error-color);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  border-color: var(--error-color);
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper .form-control-modern {
  padding-right: 3.5rem;
}

/* Password Toggle */
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  z-index: 10;
  padding: 0;
}

.password-toggle:hover {
  color: #155dfc;
  background: rgba(21, 93, 252, 0.1);
}

.password-toggle:active {
  transform: translateY(-50%) scale(0.95);
}

.password-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-toggle i {
  font-size: 1.125rem;
  transition: transform 0.2s ease;
}

.password-toggle:hover i {
  transform: scale(1.1);
}

/* Error Messages */
.invalid-feedback,
.text-danger {
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  color: var(--error-color);
  font-weight: 500;
}

/* Form Options (Remember Me & Forgot Password) */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Checkboxes */
.form-check {
  display: flex;
  align-items: center;
  margin: 0;
}

.form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0;
  margin-right: 0.625rem;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  outline: none;
}

.form-check-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
}

/* Links */
.forgot-password-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.forgot-password-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  background: #155dfc;
  border: none;
  border-radius: 10px;
  padding: 0.9375rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
  margin-top: 0.5rem;
  color: white;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
  background: linear-gradient(135deg, #5568d3 0%, #653a8b 50%, #e081f0 100%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
  outline: none;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Outline Button Styles */
.btn-outline-primary {
  background: transparent;
  color: #155dfc;
  border: 2px solid #155dfc;
  border-radius: 10px;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.btn-outline-primary:hover {
  background: #155dfc;
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

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

.btn-outline-secondary {
  background: transparent;
  color: #64748b;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.btn-outline-secondary:hover {
  background: #f1f5f9;
  color: #334155;
  border-color: #94a3b8;
}

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

/* Small button variants */
.btn-sm.btn-outline-primary,
.btn-sm.btn-outline-secondary {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  border-radius: 8px;
}

/* Rounded pill buttons */
.btn.rounded-pill {
  border-radius: 50px !important;
}

/* Icon-only circular buttons */
.btn.rounded-circle {
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.btn.rounded-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Back Link */
.back-link {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.back-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.back-link a:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

.back-link a i {
  font-size: 1rem;
}

/* Password Strength Indicator */
.password-strength {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Password Requirements */
.password-requirements {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.8125rem;
}

.password-requirements ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.password-requirements li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.password-requirements li:last-child {
  margin-bottom: 0;
}

.password-requirements li i {
  font-size: 0.875rem;
  color: var(--border-color);
}

.password-requirements li.valid i {
  color: var(--success-color);
}

/* Info Box */
.info-box {
  background-color: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 15px 20px;
  margin: 25px 0;
  border-radius: 4px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  color: #92400e;
}

/* Alternative Link (for email templates) */
.alternative-link {
  margin-top: 25px;
  padding: 20px;
  background-color: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #8b5cf6;
}

.alternative-link p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #64748b;
}

.alternative-link a {
  color: #8b5cf6;
  word-break: break-all;
  font-size: 13px;
}

/* Utility Classes */
.mb-3 {
  margin-bottom: 1.5rem;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Mobile Optimizations (≤640px) */
@media (max-width: 640px) {
  body.parent-auth {
    padding: 0.75rem;
    align-items: flex-start;
    padding-top: 2.5rem;
    overflow-x: hidden;
  }

  .login-box {
    max-width: 100%;
    width: 100%;
  }

  .card {
    border-radius: 20px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
  }

  .parent-badge {
    top: -12px;
    padding: 0.4rem 1.25rem;
    font-size: 0.8125rem;
  }

  .parent-badge i {
    font-size: 1rem;
  }

  .card-body {
    padding: 1rem 1.5rem;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .login-logo {
    margin-bottom: 1.5rem;
  }

  .login-logo img {
    max-height: 60px;
  }

  .login-logo a:not(:has(img)) {
    font-size: 1.875rem;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .icon-circle i {
    font-size: 2rem;
  }

  .welcome-title,
  .page-title {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
    margin-top: 0.75rem;
  }

  .welcome-subtitle,
  .page-subtitle {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .page-subtitle {
    margin-bottom: 1.75rem;
    padding: 0;
  }

  .form-label {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }

  .form-control {
    padding: 0.75rem 0.875rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .input-group-text {
    padding: 0.75rem 0.875rem;
    min-width: 44px; /* Better touch target */
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .forgot-password-link {
    width: 100%;
    text-align: left;
  }

  .btn-primary {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    min-height: 48px; /* Better touch target */
  }

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

/* Small Mobile (≤375px) */
@media (max-width: 375px) {
  .parent-badge {
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card-body {
    padding: 1rem 1rem;
    overflow-x: hidden;
    box-sizing: border-box;
  }

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

  .welcome-subtitle,
  .page-subtitle {
    font-size: 0.8125rem;
  }

  .form-control {
    padding: 0.6875rem 0.75rem;
  }

  .input-group-text {
    padding: 0.6875rem 0.75rem;
  }
}

/* Tablet Optimizations (641px - 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
  .login-box {
    max-width: 420px;
  }

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

/* Large Screen Optimizations (≥1440px) */
@media (min-width: 1440px) {
  .login-box {
    max-width: 480px;
  }

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

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark Mode Support (placeholder for future) */
@media (prefers-color-scheme: dark) {
  /* Can be extended for dark mode */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .form-control {
    border-width: 2px;
  }

  .btn-primary {
    border: 2px solid var(--primary-dark);
  }
}

/* Edit Student Page Styles */
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle-small {
  width: 32px;
  height: 32px;
}

.form-control:focus,
.form-select:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

/* Edit page card header gradient */
.card-header[style*="gradient"] {
  color: white;
}

/* Edit page sticky mobile button */
@media (max-width: 991.98px) {
  .fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
}

/* Tom Select Custom Styling for Parent Portal */
.ts-wrapper.form-select {
  padding: 0;
}

.ts-control {
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  padding-right: 2.5rem !important;
  min-height: 48px !important;
  background: #ffffff !important;
  transition: all 0.3s ease !important;
  position: relative;
}

/* Dropdown Arrow Indicator */
.ts-control::after {
  content: '\f282';
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #64748b;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 1;
}

.ts-control.focus::after,
.ts-control.active::after {
  color: #155dfc;
  transform: translateY(-50%) rotate(180deg);
}

.ts-control:hover {
  border-color: #cbd5e1 !important;
}

.ts-control.focus,
.ts-control:focus {
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1) !important;
  outline: none !important;
}

.ts-dropdown {
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  margin-top: 0.5rem !important;
}

.ts-dropdown .option {
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  margin: 0.25rem 0.5rem !important;
  transition: all 0.2s ease !important;
}

.ts-dropdown .option:hover,
.ts-dropdown .option.active {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
  color: white !important;
}

.ts-dropdown .option.selected {
  background: #f1f5f9 !important;
  color: #1e293b !important;
  font-weight: 600;
}

.ts-dropdown .optgroup-header {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  padding: 0.75rem 1rem 0.5rem !important;
}

/* Tom Select in Modern Forms */
.form-group-modern .ts-control {
  border-radius: 12px !important;
  border: 2px solid #e2e8f0 !important;
}

.form-group-modern .ts-control.focus,
.form-group-modern .ts-control:focus {
  border-color: #155dfc !important;
  box-shadow: 0 0 0 4px rgba(21, 93, 252, 0.1) !important;
}

.form-select-modern.ts-wrapper .ts-control {
  border-radius: 12px !important;
}

/* Tom Select Loading State */
.ts-control.loading::after {
  border-color: #8b5cf6 transparent transparent !important;
}

/* Tom Select Clear Button */
.ts-control .clear-button {
  color: #64748b !important;
  transition: color 0.2s ease !important;
}

.ts-control .clear-button:hover {
  color: #ef4444 !important;
}

/* Tom Select Input */
.ts-control input {
  font-size: 0.9375rem !important;
  color: #1e293b !important;
  padding-right: 1.5rem !important;
}

.ts-control input::placeholder {
  color: #94a3b8 !important;
}

/* Ensure arrow doesn't overlap with items */
.ts-control .item {
  padding-right: 0.5rem !important;
  max-width: calc(100% - 2rem) !important;
}

/* Position arrow above clear button */
.ts-control .clear-button {
  right: 2.5rem !important;
  z-index: 2;
}

/* Tom Select No Results */
.ts-dropdown .no-results {
  padding: 1rem !important;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

/* Responsive Tom Select */
@media (max-width: 767.98px) {
  .ts-control {
    min-height: 44px !important;
    padding: 0.625rem 0.875rem !important;
  }
  
  .ts-dropdown .option {
    padding: 0.625rem 0.875rem !important;
  }
}

/* ========================================
   DROPDOWN POSITIONING FIX
   ======================================== */

/* Card positioning for dropdown container */
.student-card,
.swiper-slide {
  position: relative;
}

.student-card .card,
.swiper-slide .card,
.parent-card .card {
  position: relative;
  overflow: visible;
}

.student-card .card-body,
.swiper-slide .card-body,
.parent-card .card-body {
  overflow: visible;
}

/* Keep header overflow hidden for gradient */
.student-card .card-header,
.swiper-slide .card-header,
.parent-card .card-header {
  overflow: hidden;
}

/* Dropdown container positioning */
.student-card .dropdown,
.swiper-slide .dropdown,
.parent-card .dropdown {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
}

/* Professional Dropdown menu styling */
.student-card .dropdown-menu,
.swiper-slide .dropdown-menu,
.parent-card .dropdown-menu {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.5rem;
  margin-top: 0.25rem;
  max-height: 500px;
  overflow-y: auto;
}

.student-card .dropdown-item,
.swiper-slide .dropdown-item,
.parent-card .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  border-radius: 4px;
  margin: 2px 0;
}

.student-card .dropdown-item:hover,
.swiper-slide .dropdown-item:hover,
.parent-card .dropdown-item:hover {
  background: #f8fafc;
  color: #155dfc;
}

/* Desktop/Large screen enhancements */
@media (min-width: 768px) {
  .student-card .dropdown-menu,
  .swiper-slide .dropdown-menu,
  .parent-card .dropdown-menu {
    min-width: 180px;
  }
  
  /* Ensure rows and columns allow overflow for dropdowns */
  .row,
  .col {
    overflow: visible !important;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 767.98px) {
  .student-card .dropdown-menu,
  .swiper-slide .dropdown-menu,
  .parent-card .dropdown-menu {
    max-width: 200px;
    min-width: 180px;
  }
  
  .student-card .dropdown-item,
  .swiper-slide .dropdown-item,
  .parent-card .dropdown-item {
    padding: 0.35rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
  
  .student-card .dropdown-item i,
  .swiper-slide .dropdown-item i,
  .parent-card .dropdown-item i {
    width: 18px;
    text-align: center;
    margin-right: 0.5rem;
  }
}

/* Profile Page Info Boxes */
.info-box-modern {
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
}

.info-box-modern:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box-content {
  width: 100%;
}

.info-box-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.info-box-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  word-wrap: break-word;
  line-height: 1.5;
}

/* Textarea Modern Styling */
textarea.form-control-modern {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

textarea.form-control-modern:focus {
  min-height: 120px;
}

/* Toastr - Dark Background Styling */
#toast-container > .toast-success {
  background-color: #1e293b !important;
  background-image: none !important;
  border-left: 4px solid #10b981 !important;
}

#toast-container > .toast-success .toast-title {
  color: #ffffff !important;
}

#toast-container > .toast-success .toast-message {
  color: #e2e8f0 !important;
}

#toast-container > .toast-error {
  background-color: #1e293b !important;
  background-image: none !important;
  border-left: 4px solid #ef4444 !important;
}

#toast-container > .toast-error .toast-title {
  color: #ffffff !important;
}

#toast-container > .toast-error .toast-message {
  color: #e2e8f0 !important;
}

#toast-container > .toast-warning {
  background-color: #1e293b !important;
  background-image: none !important;
  border-left: 4px solid #f59e0b !important;
}

#toast-container > .toast-warning .toast-title {
  color: #ffffff !important;
}

#toast-container > .toast-warning .toast-message {
  color: #e2e8f0 !important;
}

#toast-container > .toast-info {
  background-color: #1e293b !important;
  background-image: none !important;
  border-left: 4px solid #155dfc !important;
}

#toast-container > .toast-info .toast-title {
  color: #ffffff !important;
}

#toast-container > .toast-info .toast-message {
  color: #e2e8f0 !important;
}

/* Close button styling for dark background */
#toast-container > div .toast-close-button {
  color: #94a3b8 !important;
  opacity: 0.8 !important;
}

#toast-container > div .toast-close-button:hover {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Professional Edit Page Styles */
.section-header {
  margin-bottom: 1.5rem;
}

.section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #155dfc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.section-icon i {
  color: white;
  font-size: 1.25rem;
}

.section-title {
  color: #1e293b;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

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

.form-label-modern {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: visible;
}

.form-control-modern,
.form-select-modern {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1e293b;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-control-modern::placeholder {
  color: #94a3b8;
}

.form-control-modern:focus,
.form-select-modern:focus {
  color: #1e293b;
  background-color: #ffffff;
  border-color: #155dfc;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(21, 93, 252, 0.1);
}

.form-control-modern.is-invalid,
.form-select-modern.is-invalid {
  border-color: #ef4444;
}

.form-control-modern.is-invalid:focus,
.form-select-modern.is-invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.photo-preview-card {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.photo-preview-card:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
}

.photo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e2e8f0;
  background: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.photo-circle:hover {
  border-color: #155dfc;
  transform: scale(1.05);
}

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #94a3b8;
  font-size: 2.5rem;
}

.file-info {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.file-info i {
  color: #155dfc;
  font-size: 1rem;
}

.action-buttons-wrapper {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
}

.btn-modern {
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.btn-modern-secondary {
  background: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-modern-secondary:hover {
  background: #f8fafc;
  color: #1e293b;
  border-color: #cbd5e1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-modern-primary {
  background: #155dfc;
  color: #ffffff;
  border: none;
  box-shadow: 0 2px 8px rgba(21, 93, 252, 0.25);
}

.btn-modern-primary:hover {
  background: #1249d8;
  box-shadow: 0 4px 12px rgba(21, 93, 252, 0.35);
}

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

/* Alert Improvements */
.alert {
  border-radius: 12px;
  border: none;
  padding: 1rem 1.25rem;
}

.alert-danger {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #991b1b;
}

.alert-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #166534;
}

/* Mobile Action Bar */
.mobile-action-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1050 !important;
  background: #ffffff !important;
  border-top: 2px solid #f1f5f9 !important;
  padding: 1rem !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(10px);
}

/* Show mobile action bar only on mobile (below lg breakpoint) */
@media (max-width: 991.98px) {
  .mobile-action-bar {
    display: block !important;
    visibility: visible !important;
  }
  
  /* Add bottom padding to prevent content from being hidden behind sticky bar */
    form {
    padding-bottom: 10px !important;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* Hide mobile action bar on desktop (lg and above) */
@media (min-width: 992px) {
  .mobile-action-bar {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Responsive Improvements */
@media (max-width: 767.98px) {
  .section-icon {
    width: 38px;
    height: 38px;
  }
  
  .section-icon i {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1rem;
  }
  
  .form-control-modern,
  .form-select-modern {
    font-size: 1rem;
  }
  
  .btn-modern {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-modern-primary {
    min-width: unset;
  }
  
  .action-buttons-wrapper {
    display: none;
  }
  
  .photo-circle {
    width: 80px;
    height: 80px;
  }
  
  .photo-preview-card {
    padding: 1rem;
  }
}

/* ========================================
   NOTIFICATION CARDS
   ======================================== */

.notification-card {
  cursor: pointer;
  position: relative;
}

.notification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 16px;
}

.notification-card:hover::before {
  opacity: 1;
}

.notification-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15) !important;
}

.notification-card .btn-outline-primary {
  transition: all 0.2s ease;
}

.notification-card:hover .btn-outline-primary {
  transform: translateX(3px);
}

/* Notification badge animation */
.notification-card .badge {
  animation: pulse 2s ease-in-out infinite;
}

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

/* ========================================
   DROPDOWN MENU IMPROVEMENTS
   ======================================== */

.dropdown-menu .dropdown-item {
  transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
  background: rgba(21, 93, 252, 0.08);
  color: #155dfc !important;
  transform: translateX(3px);
}

.dropdown-menu .dropdown-item i {
  transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover i {
  color: #155dfc !important;
}

/* ========================================
   PWA INSTALL BUTTON
   ======================================== */

.pwa-install-container {
  display: none;
  animation: fadeInInstall 0.5s ease-in;
}

@keyframes fadeInInstall {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pwa-install-button {
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pwa-install-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.pwa-install-button i {
  margin-right: 0.5rem;
}

/* ========================================
   PROFILE UPLOAD PICTURE PAGE STYLES
   ======================================== */

/* Profile Upload Container */
.profile-upload-container {
  padding-bottom: 100px !important;
}

/* Profile Upload Card */
.profile-upload-card {
  border-radius: 20px;
  overflow: hidden;
}

.profile-upload-header {
  background: linear-gradient(135deg, #1249d8 0%, #155dfc 50%, #4080ff 100%);
  padding: 2rem 2rem;
}

.profile-upload-body {
  padding: 2rem;
}

/* Mobile Sticky Footer for Upload Picture */
.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
}

.mobile-sticky-footer .btn {
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.mobile-sticky-footer .btn-outline-secondary {
  background: white;
  border: 2px solid #e0e0e0;
  color: #333;
}

.mobile-sticky-footer .btn-outline-secondary:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
  color: #333;
}

.mobile-sticky-footer .btn-outline-secondary:active {
  background: #e8e8e8;
}

.mobile-sticky-footer .btn-primary {
  background: #0d6efd;
  border: 2px solid #0d6efd;
  color: white;
  box-shadow: none;
}

.mobile-sticky-footer .btn-primary:hover {
  background: #0b5ed7;
  border-color: #0b5ed7;
}

.mobile-sticky-footer .btn-primary:active {
  background: #0a58ca;
  border-color: #0a58ca;
}

/* File Upload Modern Styles */
.file-upload-modern {
  position: relative;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background: #f9fafb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-modern:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}

.file-upload-modern.dragover {
  border-color: #3b82f6;
  background: #dbeafe;
  transform: scale(1.02);
}

.file-input-hidden {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.file-upload-content {
  pointer-events: none;
}

.file-upload-icon {
  color: #3b82f6;
  margin-bottom: 1rem;
}

.file-upload-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.file-upload-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
}

.file-preview-area {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.file-preview-area img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  object-fit: contain;
}

.existing-file-card {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.existing-file-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.existing-file-preview {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  flex-shrink: 0;
}

.existing-file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.existing-file-info {
  flex: 1;
  text-align: left;
}

.existing-file-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
  word-break: break-word;
}

.existing-file-meta {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

/* ========================================
   PARENT PORTAL LAYOUT STYLES
   ======================================== */

/* Remove sidebar shadow on mobile */
@media (max-width: 991.98px) {
  .app-sidebar {
    box-shadow: none !important;
  }
  
  .app-sidebar.sidebar-open {
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15) !important;
  }
}

/* Clean main content area */
.parent-portal .app-main {
  background: #f8fafc;
  min-height: calc(100vh - 56px);
}

/* Fix container padding on mobile */
@media (max-width: 575.98px) {
  .parent-portal .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .parent-portal .py-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  
  .parent-portal .px-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Cards - cleaner design */
.parent-portal .card {
  border: 1px solid #f1f5f9;
  box-shadow: none;
}

.parent-portal .card:hover {
  border-color: #e2e8f0;
}

/* Remove unnecessary shadows */
.parent-portal .shadow-sm {
  box-shadow: none !important;
}

.parent-portal .shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

/* ========================================
   PARENT DASHBOARD HOME PAGE STYLES
   ======================================== */

/* Dashboard Container */
.dashboard-container {
  padding: 16px;
}

@media (min-width: 768px) {
  .dashboard-container {
    padding: 24px;
  }
}

/* Empty State */
.empty-state-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  border: 1px solid #f1f5f9;
}

.empty-state-card .empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state-card .empty-icon i {
  font-size: 2.5rem;
  color: #cbd5e1;
}

.empty-state-card h5 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #475569;
}

.empty-state-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Section Card */
.section-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.section-header h6 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header h6 i {
  color: #155dfc;
}

.view-all-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #155dfc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all-link:hover {
  color: #1249d8;
}

.section-body {
  padding: 8px;
}

/* Notification Row */
.notification-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.notification-row:hover {
  background: #f8fafc;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #155dfc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon i {
  color: white;
  font-size: 1rem;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-content h6 {
  margin: 0 0 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.notification-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.notification-meta .badge {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
}

.notification-meta .date {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.notification-content p {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
}

.notification-arrow {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  padding-top: 4px;
}

.notification-row:hover .notification-arrow {
  color: #155dfc;
}

