/* /Components/Layout/FooterBar.razor.rz.scp.css */
.footer-bar[b-80494ljaeq] {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer-links a[b-80494ljaeq] {
  color: var(--bs-secondary);
  text-decoration: none;
}

.footer-links a:hover[b-80494ljaeq] {
  color: var(--bs-primary);
  text-decoration: underline;
}
/* /Components/Layout/HeaderBar.razor.rz.scp.css */
.header-bar[b-fpo6wojc0g] {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-link[b-fpo6wojc0g] {
  color: var(--bs-primary);
}

.user-controls[b-fpo6wojc0g] {
  display: flex;
  align-items: center;
}
/* /Components/Layout/LoginDisplay.razor.rz.scp.css */
.user-dropdown[b-y3brwmmjgu] {
  position: relative;
}

.user-dropdown .dropdown-toggle[b-y3brwmmjgu] {
  padding: 0.25rem 0.5rem;
  color: var(--bs-body-color);
  background-color: transparent;
  border: none;
}

.user-dropdown .dropdown-toggle[b-y3brwmmjgu]::after {
  margin-left: 0.5rem;
}

.avatar-container[b-y3brwmmjgu] {
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.user-avatar[b-y3brwmmjgu] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-item-text[b-y3brwmmjgu] {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Add responsive styles */
@media (max-width: 767.98px) {
  .user-dropdown .dropdown-menu[b-y3brwmmjgu] {
    position: fixed !important;
    top: auto !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 4rem;
    width: 100%;
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page-layout[b-z6u1r297yn] {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-container[b-z6u1r297yn] {
  flex: 1 0 auto;
  padding-bottom: var(--content-bottom-padding, 0);
  transition: padding-bottom 0.2s ease;
}

/* Add padding to the bottom on mobile to accommodate the navigation bar */
@media (max-width: 767.98px) {
  .page-layout[b-z6u1r297yn] {
    --content-bottom-padding: 5rem;
  }
}

/* Account for iOS safe area at the bottom */
@supports (padding: max(0px)) {
  .content-container[b-z6u1r297yn] {
    padding-bottom: max(
      var(--content-bottom-padding, 0),
      env(safe-area-inset-bottom)
    );
  }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Horizontal Navigation */
.horizontal-nav .nav[b-9gwef8dtk2] {
  display: flex;
  gap: 1rem;
}

.horizontal-nav .nav-link[b-9gwef8dtk2] {
  color: var(--bs-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}

.horizontal-nav .nav-link:hover[b-9gwef8dtk2] {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.horizontal-nav .nav-link.active[b-9gwef8dtk2] {
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

/* Mobile Navigation */
.mobile-nav-container[b-9gwef8dtk2] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bs-white);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

.mobile-nav[b-9gwef8dtk2] {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-nav-item[b-9gwef8dtk2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bs-gray-600);
  text-decoration: none;
  padding: 8px 4px;
  flex: 1;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

/* Tap animation */
.mobile-nav-item:active[b-9gwef8dtk2] {
  transform: scale(0.95);
  opacity: 0.8;
}

.mobile-nav-item i[b-9gwef8dtk2] {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
  transition: transform 0.2s ease;
  text-align: center;
  width: 100%;
}

.mobile-nav-item .small[b-9gwef8dtk2] {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-nav-item:hover[b-9gwef8dtk2] {
  color: var(--bs-primary);
}

.mobile-nav-item.active[b-9gwef8dtk2] {
  color: var(--bs-primary);
}

.mobile-nav-item.active i[b-9gwef8dtk2] {
  transform: translateY(-2px);
}

.mobile-nav-item.active[b-9gwef8dtk2]::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--bs-primary);
}

/* Badge styling */
.nav-badge[b-9gwef8dtk2] {
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: -20px;
  background-color: var(--bs-danger);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  animation: badge-pulse-b-9gwef8dtk2 2s infinite;
}

@keyframes badge-pulse-b-9gwef8dtk2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .mobile-nav-container[b-9gwef8dtk2] {
    background-color: var(--bs-dark);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-nav-item[b-9gwef8dtk2] {
    color: var(--bs-gray-400);
  }

  .mobile-nav-item.active[b-9gwef8dtk2],
  .mobile-nav-item:hover[b-9gwef8dtk2] {
    color: var(--bs-primary-lighter, var(--bs-primary));
  }

  .nav-badge[b-9gwef8dtk2] {
    background-color: var(--bs-danger, #dc3545);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  }
}
/* /Components/Pages/Authentication.razor.rz.scp.css */
/* Applying Rule: Scoped CSS instead of inline styles */

.auth-section[b-r128wz67jz],
.logged-out-section[b-r128wz67jz] {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 2rem 0;
}

/* Logo styling */
.logo-icon[b-r128wz67jz] {
    font-size: 4rem;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

/* Typography */
h1[b-r128wz67jz] {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--bs-dark);
}

.lead[b-r128wz67jz] {
    font-size: 1.25rem;
    color: var(--bs-secondary);
    margin-bottom: 2rem;
}

/* Button styling */
.btn[b-r128wz67jz] {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover[b-r128wz67jz] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary[b-r128wz67jz] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary[b-r128wz67jz] {
    color: #0d6efd;
    border-color: #0d6efd;
}

/* Icon styling */
.bi[b-r128wz67jz] {
    opacity: 0.9;
}

/* Card styling to match screenshot */
.auth-card[b-r128wz67jz] {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

/* Rotation animation for loading icons */
.spin[b-r128wz67jz] {
    animation: spin-b-r128wz67jz 1.5s infinite linear;
}

@keyframes spin-b-r128wz67jz {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .auth-card[b-r128wz67jz] {
        padding: 4rem 3rem;
        max-width: 480px;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.welcome-section[b-whjw1ik48e] {
    background: linear-gradient(to bottom, var(--bs-light), white);
    min-height: calc(100vh - 60px);
}

.welcome-section i.bi[b-whjw1ik48e] {
    opacity: 0.9;
}

.welcome-section .btn[b-whjw1ik48e] {
    transition: transform 0.2s;
}

.welcome-section .btn:hover[b-whjw1ik48e] {
    transform: translateY(-2px);
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Using Bootstrap 5 with custom styling */
/* Applying Rule: Scoped CSS instead of inline styles */

:root[b-jut648oy7z] {
  --primary-color: #4e73df;
  --success-color: #1cc88a;
  --info-color: #36b9cc;
  --warning-color: #f6c23e;
  --danger-color: #e74a3b;
  --secondary-color: #858796;
  --light-color: #f8f9fc;
  --dark-color: #5a5c69;
}

.home-container[b-jut648oy7z] {
  font-family: "Poppins", sans-serif;
}

h1[b-jut648oy7z],
h2[b-jut648oy7z],
h3[b-jut648oy7z],
h4[b-jut648oy7z],
h5[b-jut648oy7z],
h6[b-jut648oy7z] {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

/* Welcome Banner Styles */
.welcome-banner[b-jut648oy7z] {
  background-color: var(--light-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  margin-bottom: 1.5rem;
}

/* Card Styles */
.metric-card[b-jut648oy7z] {
  border: none;
  border-left: 0.25rem solid var(--primary-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  transition: transform 0.3s ease;
}

.metric-card:hover[b-jut648oy7z] {
  transform: translateY(-4px);
}

.metric-icon[b-jut648oy7z] {
  background-color: rgba(78, 115, 223, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
}

.heart-rate[b-jut648oy7z] {
  color: var(--danger-color);
  background-color: rgba(231, 74, 59, 0.1);
}

.blood-pressure[b-jut648oy7z] {
  color: var(--info-color);
  background-color: rgba(54, 185, 204, 0.1);
}

.blood-oxygen[b-jut648oy7z] {
  color: var(--primary-color);
  background-color: rgba(78, 115, 223, 0.1);
}

.temperature[b-jut648oy7z] {
  color: var(--warning-color);
  background-color: rgba(246, 194, 62, 0.1);
}

.trend-info[b-jut648oy7z] {
  color: var(--secondary-color);
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Chart Placeholder Styles */
.chart-placeholder[b-jut648oy7z] {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.chart-lines[b-jut648oy7z] {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 90%;
  padding-bottom: 25px;
}

.chart-line[b-jut648oy7z] {
  width: 12%;
  background-color: var(--primary-color);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.chart-labels[b-jut648oy7z] {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.chart-labels span[b-jut648oy7z] {
  text-align: center;
  width: 14.28%;
  color: var(--secondary-color);
  font-size: 0.8rem;
}

/* Health Insights Card */
.health-insights .list-group-item[b-jut648oy7z] {
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 1rem;
}

.health-insights .list-group-item:first-child[b-jut648oy7z] {
  border-top: none;
}

.health-insights i[b-jut648oy7z] {
  font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .welcome-banner .col-md-4[b-jut648oy7z] {
    text-align: left;
    margin-top: 1rem;
  }

  .chart-placeholder[b-jut648oy7z] {
    height: 200px;
  }

  .table-responsive[b-jut648oy7z] {
    font-size: 0.875rem;
  }
}
/* /Components/UI/MetricCard.razor.rz.scp.css */
.metric-card[b-0yq4jwwnjw] {
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.metric-card:hover[b-0yq4jwwnjw] {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.metric-icon[b-0yq4jwwnjw] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
}

.heart-rate[b-0yq4jwwnjw] {
  background-color: #ff647c;
}

.blood-pressure[b-0yq4jwwnjw] {
  background-color: #5773ff;
}

.blood-oxygen[b-0yq4jwwnjw] {
  background-color: #33bfff;
}

.temperature[b-0yq4jwwnjw] {
  background-color: #ffb443;
}

.trend-info[b-0yq4jwwnjw] {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: #6c757d;
}
/* /Features/BloodPressure/Components/BloodPressureSummaryCard.razor.rz.scp.css */
.bp-summary-card[b-d94cblmmv0] {
  transition: all 0.2s ease-in-out;
}

.bp-summary-card:hover[b-d94cblmmv0] {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.metric-card[b-d94cblmmv0] {
  transition: all 0.2s ease;
  border-radius: 0.25rem;
}

.metric-card:hover[b-d94cblmmv0] {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: var(--bs-primary);
}

.latest-bp[b-d94cblmmv0] {
  font-weight: 600;
  line-height: 1.2;
}

.notes[b-d94cblmmv0] {
  background-color: rgba(0, 0, 0, 0.03);
  border-left: 3px solid var(--bs-border-color);
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
}

.note-content[b-d94cblmmv0] {
  font-style: italic;
  line-height: 1.4;
}

/* Improve responsive design for mobile */
@media (max-width: 576px) {
  .latest-bp[b-d94cblmmv0] {
    font-size: 2rem !important;
  }
}
/* /Features/BloodPressure/Components/BPGauge.razor.rz.scp.css */
.bp-gauge[b-ndjltlg3de] {
  margin: 2rem 0;
}

.gauge-container[b-ndjltlg3de] {
  position: relative;
  height: 30px;
  margin-bottom: 8px;
}

.gauge-scale[b-ndjltlg3de] {
  display: flex;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.gauge-segment[b-ndjltlg3de] {
  flex: 1;
  height: 100%;
}

.normal[b-ndjltlg3de] {
  background-color: #10b981;
}
.elevated[b-ndjltlg3de] {
  background-color: #fbbf24;
}
.stage-1[b-ndjltlg3de] {
  background-color: #f59e0b;
}
.stage-2[b-ndjltlg3de] {
  background-color: #ef4444;
}
.crisis[b-ndjltlg3de] {
  background-color: #7f1d1d;
}

.gauge-pointer[b-ndjltlg3de] {
  position: absolute;
  bottom: 100%;
  transform: translateX(-50%);
  color: #1f2937;
  font-size: 24px;
  line-height: 1;
}

.gauge-labels[b-ndjltlg3de] {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6b7280;
}

.gauge-labels span[b-ndjltlg3de] {
  flex: 1;
  text-align: center;
}
/* /Features/BloodPressure/Components/WelcomeSection.razor.rz.scp.css */
.welcome-section[b-u4p3fn0xgr] {
    background: linear-gradient(to bottom, var(--bs-light), white);
    min-height: 100vh;
}

.welcome-section i.bi[b-u4p3fn0xgr] {
    opacity: 0.9;
}

.welcome-section .btn[b-u4p3fn0xgr] {
    transition: transform 0.2s;
}

.welcome-section .btn:hover[b-u4p3fn0xgr] {
    transform: translateY(-2px);
}
/* /Features/BloodPressure/Pages/ReadingDetails.razor.rz.scp.css */
.reading-circle[b-x10cw9pdfu] {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  color: white;
}

.systolic[b-x10cw9pdfu] {
  background-color: #dc3545;
}

.diastolic[b-x10cw9pdfu] {
  background-color: #fd7e14;
}

.pulse[b-x10cw9pdfu] {
  background-color: #0d6efd;
}

.reading-value[b-x10cw9pdfu] {
  font-size: 24px;
  font-weight: bold;
}

.reading-label[b-x10cw9pdfu] {
  font-size: 14px;
}

.status-badge[b-x10cw9pdfu] {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.status-normal[b-x10cw9pdfu] {
  color: #fff;
  background-color: #198754;
}

.status-elevated[b-x10cw9pdfu] {
  color: #000;
  background-color: #ffc107;
}

.status-high[b-x10cw9pdfu] {
  color: #fff;
  background-color: #dc3545;
}

.status-crisis[b-x10cw9pdfu] {
  color: #fff;
  background-color: #6f42c1;
}
/* /Features/BloodPressure/Pages/ReadingForm.razor.rz.scp.css */
.page-container[b-thxjvxbjn6] {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.form-card[b-thxjvxbjn6] {
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.card-header[b-thxjvxbjn6] {
  background-color: transparent; /* Remove default background */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.5rem;
}

.form-header[b-thxjvxbjn6] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.reading-category[b-thxjvxbjn6] {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  gap: 0.5rem;
  color: white;
}

.normal[b-thxjvxbjn6] {
  background-color: #d1fae5;
  color: #065f46;
}

.elevated[b-thxjvxbjn6] {
  background-color: #fef3c7;
  color: #92400e;
}

.hypertension-1[b-thxjvxbjn6] {
  background-color: #fee2e2;
  color: #991b1b;
}

.hypertension-2[b-thxjvxbjn6] {
  background-color: #fca5a5;
  color: #7f1d1d;
}

.hypertensive-crisis[b-thxjvxbjn6] {
  background-color: #ef4444;
  color: white;
}

.reading-inputs[b-thxjvxbjn6] {
  background-color: #f9fafb;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.reading-input[b-thxjvxbjn6] {
  text-align: center;
}

.reading-input label[b-thxjvxbjn6] {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.reading-input .form-control-lg[b-thxjvxbjn6] {
  height: 60px;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
}

.unit-label[b-thxjvxbjn6] {
  margin-top: 0.5rem;
  font-weight: 500;
  color: #6b7280;
}

.systolic .form-control-lg[b-thxjvxbjn6] {
  border-color: #ff647c;
  border-width: 2px;
}

.diastolic .form-control-lg[b-thxjvxbjn6] {
  border-color: #5773ff;
  border-width: 2px;
}

/* Hide number input spinners */
input[type="number"][b-thxjvxbjn6]::-webkit-inner-spin-button,
input[type="number"][b-thxjvxbjn6]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"][b-thxjvxbjn6] {
  -moz-appearance: textfield;
}

.form-reading[b-thxjvxbjn6] {
  position: relative;
}

.form-control[b-thxjvxbjn6] {
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-thxjvxbjn6] {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-text[b-thxjvxbjn6] {
  font-size: 0.825rem;
  color: #6c757d;
}

.btn[b-thxjvxbjn6] {
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  transition: all 0.2s ease;
}

.btn-primary[b-thxjvxbjn6] {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover[b-thxjvxbjn6] {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.btn-outline-secondary[b-thxjvxbjn6] {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover[b-thxjvxbjn6] {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

@media (max-width: 768px) {
  .form-header[b-thxjvxbjn6] {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .reading-category[b-thxjvxbjn6] {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  .reading-input .form-control-lg[b-thxjvxbjn6] {
    height: 50px;
    font-size: 1.5rem;
  }
}
/* /Features/UserManagement/Components/SortIndicator.razor.rz.scp.css */
.sort-indicator[b-83rg5el8ey] {
  margin-left: 0.25rem;
  vertical-align: middle;
  font-size: 0.75rem;
}

.sort-indicator i[b-83rg5el8ey] {
  opacity: 0.5;
}

.sort-indicator i.bi-caret-up-fill[b-83rg5el8ey],
.sort-indicator i.bi-caret-down-fill[b-83rg5el8ey] {
  opacity: 1;
  color: var(--bs-primary);
}
/* /Features/UserManagement/Components/UserProfile.razor.rz.scp.css */
.modal-backdrop[b-ia12pl90uo] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal[b-ia12pl90uo] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.user-profile-form[b-ia12pl90uo] {
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive styles - mobile first approach */
@media (max-width: 576px) {
  .d-flex.justify-content-between[b-ia12pl90uo] {
    flex-direction: column;
  }

  .d-flex.justify-content-between button[b-ia12pl90uo] {
    margin-bottom: 0.5rem;
    width: 100%;
  }
}
/* /Features/UserManagement/Pages/AccountSettings.razor.rz.scp.css */
/* Card styling */
.card[b-1p24w4j5fh] {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  margin-bottom: 1.5rem;
}

.card:hover[b-1p24w4j5fh] {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Danger zone styling */
.card.border-danger[b-1p24w4j5fh] {
  border-width: 1px;
}

.card.border-danger:hover[b-1p24w4j5fh] {
  transform: translateY(-2px);
}

/* Button styling */
.btn[b-1p24w4j5fh] {
  transition: all 0.2s;
}

.btn-outline-danger:hover[b-1p24w4j5fh] {
  background-color: #dc3545;
  color: white;
}

/* Switch toggle enhancements */
[b-1p24w4j5fh] .form-switch .form-check-input {
  width: 2.5em;
  height: 1.25em;
}

[b-1p24w4j5fh] .form-switch .form-check-input:checked {
  background-color: #198754;
  border-color: #198754;
}

/* Alert styling */
.alert[b-1p24w4j5fh] {
  border-radius: 0.375rem;
}
/* /Features/UserManagement/Pages/UserList.razor.rz.scp.css */
/* Table styling */
[b-uhgzxb8wjz] .table {
  vertical-align: middle;
}

[b-uhgzxb8wjz] .table th {
  cursor: pointer;
  user-select: none;
}

[b-uhgzxb8wjz] .table th:hover {
  background-color: #f8f9fa;
}

/* Avatar placeholder */
.avatar-placeholder[b-uhgzxb8wjz] {
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
}

/* Modal backdrop */
.modal-backdrop[b-uhgzxb8wjz] {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Pagination styling */
[b-uhgzxb8wjz] .pagination .page-link {
  color: var(--bs-primary);
}

[b-uhgzxb8wjz] .pagination .page-item.active .page-link {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

/* Search input groups */
.input-group[b-uhgzxb8wjz] {
  width: 250px;
}

/* Badge styling */
.badge[b-uhgzxb8wjz] {
  font-weight: 500;
}

/* Table responsive behavior */
@media (max-width: 767.98px) {
  .table-responsive[b-uhgzxb8wjz] {
    font-size: 0.875rem;
  }

  .btn-group .btn[b-uhgzxb8wjz] {
    padding: 0.25rem 0.5rem;
  }
}
/* /Features/UserManagement/Pages/UserProfilePage.razor.rz.scp.css */
.avatar-placeholder[b-xob9b0gvqz] {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  font-size: 3rem;
}

/* Make sure form validation messages appear properly */
[b-xob9b0gvqz] .validation-message {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Style readonly fields differently */
[b-xob9b0gvqz] input:read-only {
  background-color: #f8f9fa;
  cursor: not-allowed;
}

/* Add hover effect to action buttons */
.btn-outline-primary:hover[b-xob9b0gvqz],
.btn-outline-secondary:hover[b-xob9b0gvqz] {
  transform: translateY(-2px);
  transition: transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Badge styling */
.badge[b-xob9b0gvqz] {
  font-weight: 500;
  padding: 0.35em 0.65em;
}

@media (max-width: 767.98px) {
  .card[b-xob9b0gvqz] {
    margin-bottom: 1.5rem;
  }
}
/* /Features/UserManagement/Pages/UserRegistration.razor.rz.scp.css */
/* Styling for the registration form */
[b-k9iqh82pqn] input.form-control:focus,
[b-k9iqh82pqn] input.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  border-color: #86b7fe;
}

[b-k9iqh82pqn] .invalid {
  border-color: #dc3545;
}

[b-k9iqh82pqn] .invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Enhanced card styling */
.card[b-k9iqh82pqn] {
  transition: all 0.2s ease;
}

.card:hover[b-k9iqh82pqn] {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .card[b-k9iqh82pqn] {
    margin-bottom: 1.5rem;
  }
}
/* /Shared/Components/SortIndicator.razor.rz.scp.css */
.sort-indicator[b-0x4w07c9ky] {
  display: inline-block;
  margin-left: 0.25rem;
  vertical-align: middle;
}
