:root {
  --uh-color-primary: #dc343b;
  --uh-color-primary-hover: #c12b31;
  --uh-color-text: #1f1f1f;
  --uh-color-text-soft: #6b7280;
  --uh-color-bg: #f5f6f7;
  --uh-color-surface: #ffffff;
  --uh-color-border: #e7eaf0;
  --uh-color-border-strong: #d6dbe4;
  --uh-color-success: #198754;
  --uh-color-danger: #dc3545;
  --uh-color-warning: #f59e0b;

  --uh-radius-sm: 12px;
  --uh-radius-md: 18px;
  --uh-radius-lg: 24px;
  --uh-radius-pill: 999px;

  --uh-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.04);
  --uh-shadow-md: 0 16px 40px rgba(15, 23, 42, 0.08);

  --uh-space-1: 0.25rem;
  --uh-space-2: 0.5rem;
  --uh-space-3: 0.75rem;
  --uh-space-4: 1rem;
  --uh-space-5: 1.25rem;
  --uh-space-6: 1.5rem;
  --uh-space-7: 2rem;
  --uh-space-8: 2.5rem;

  --uh-transition: 180ms ease;
}

/* ==========================================================================
   Base
   ========================================================================== */

body {
  background-color: var(--uh-color-bg);
  color: var(--uh-color-text);
  font-family: Arial, Helvetica, sans-serif;
}

.uh-page,
.page-wrapper {
  min-height: calc(100vh - 160px);
}

.uh-card {
  background: var(--uh-color-surface);
  border: 1px solid var(--uh-color-border);
  border-radius: var(--uh-radius-lg);
  box-shadow: var(--uh-shadow-md);
}

.uh-card-body {
  padding: 2rem;
}

.uh-title {
  font-size: clamp(1.65rem, 2vw, 2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.uh-subtitle {
  color: var(--uh-color-text-soft);
  line-height: 1.6;
  margin-bottom: 0;
}

.uh-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff5f5;
  color: var(--uh-color-primary);
  border: 1px solid #ffd9db;
}

a {
  text-decoration: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.uh-btn-primary,
.btn-primary-custom {
  background: var(--uh-color-primary);
  border: 1px solid var(--uh-color-primary);
  color: #fff;
}

.uh-btn-primary {
  border-radius: 14px;
  font-weight: 700;
  padding: 0.875rem 1.1rem;
  transition: var(--uh-transition);
}

.uh-btn-primary:hover,
.uh-btn-primary:focus,
.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background: var(--uh-color-primary-hover);
  border-color: var(--uh-color-primary-hover);
  color: #fff;
}

.uh-btn-outline {
  background: #fff;
  border: 1px solid var(--uh-color-border-strong);
  color: var(--uh-color-text);
  border-radius: 14px;
  font-weight: 700;
  padding: 0.875rem 1.1rem;
  transition: var(--uh-transition);
}

.uh-btn-outline:hover,
.uh-btn-outline:focus {
  border-color: var(--uh-color-primary);
  color: var(--uh-color-primary);
}

.btn-outline-primary-custom {
  border-color: var(--uh-color-primary);
  color: var(--uh-color-primary);
}

.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus {
  background: var(--uh-color-primary);
  border-color: var(--uh-color-primary);
  color: #fff;
}

.text-primary-custom {
  color: var(--uh-color-primary) !important;
}

.bg-primary-custom {
  background-color: var(--uh-color-primary) !important;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.uh-form-label {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  color: var(--uh-color-text);
}

.uh-input-group {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--uh-color-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: var(--uh-transition);
}

.uh-input-group:focus-within {
  border-color: var(--uh-color-primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 52, 59, 0.12);
}

.uh-input-icon {
  width: 48px;
  min-width: 48px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa3af;
  background: #fff;
  border-right: 1px solid #eef1f4;
  flex-shrink: 0;
}

.uh-input {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  height: 56px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 1rem;
  color: var(--uh-color-text);
}

.uh-input::placeholder {
  color: #98a2b3;
}

.uh-input:focus {
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
}

.uh-input-action {
  width: 48px;
  min-width: 48px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-left: 1px solid #eef1f4;
  background: #fff;
  color: #9aa3af;
  flex-shrink: 0;
  transition: var(--uh-transition);
}

.uh-input-action:hover,
.uh-input-action:focus {
  color: var(--uh-color-primary);
  box-shadow: none;
  outline: none;
}

.uh-field-hint {
  color: var(--uh-color-text-soft);
  font-size: 0.88rem;
  margin-top: 0.45rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--uh-color-primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 52, 59, 0.15);
}

/* ==========================================================================
   Alerts / badges
   ========================================================================== */

.uh-alert {
  border-radius: 16px;
  border: 1px solid transparent;
  padding: 0.95rem 1rem;
}

.uh-alert-danger {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #9f1239;
}

.uh-alert-success {
  background: #ecfdf3;
  border-color: #b7ebc6;
  color: #166534;
}

.urgent-box {
  background: #fff3cd;
  border: 1px solid #ffe69c;
  border-radius: 16px;
}

.status-badge-soft {
  display: inline-block;
  padding: 6px 10px;
  border-radius: var(--uh-radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-badge-warning {
  background: #fff3cd;
  color: #856404;
}

.status-badge-success {
  background: #d1e7dd;
  color: #0f5132;
}

/* ==========================================================================
   Brand / header
   ========================================================================== */

.navbar-brand {
  font-weight: 700;
  color: var(--uh-color-primary) !important;
  letter-spacing: 0.2px;
}

.nav-link {
  font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
  color: var(--uh-color-primary) !important;
}

.uh-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.uh-logo-icon {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.uh-logo-text {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.uh-brand:hover .uh-logo-icon {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.top-vip-banner {
  background: linear-gradient(90deg, #111 0%, #2d2d2d 100%);
  color: #fff;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-vip-banner a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.top-vip-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-vip-banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.45;
  flex: 1 1 auto;
  min-width: 0;
}

.top-vip-banner-text i {
  flex-shrink: 0;
}

.top-vip-banner-copy {
  color: rgba(255, 255, 255, 0.95);
}

.top-vip-banner-copy strong {
  color: #fff;
}

.top-vip-banner-cta {
  flex-shrink: 0;
}

.top-vip-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--uh-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.top-vip-banner-link:hover,
.top-vip-banner-link:focus {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.app-shell {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.app-sidebar {
  display: none;
}

.app-main {
  flex: 1 1 auto;
  min-width: 0;
}

.app-sidebar-section + .app-sidebar-section {
  margin-top: 1.5rem;
}

.app-sidebar-label {
  color: #98a2b3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0.35rem;
}

.app-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  color: #475467;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.app-sidebar-link i {
  width: 20px;
  text-align: center;
  color: #98a2b3;
  transition: color 0.18s ease;
}

.app-sidebar-link:hover,
.app-sidebar-link:focus,
.app-sidebar-link.active {
  background: rgba(220, 52, 59, 0.08);
  color: var(--uh-color-primary);
  transform: translateX(2px);
}

.app-sidebar-link:hover i,
.app-sidebar-link:focus i,
.app-sidebar-link.active i {
  color: var(--uh-color-primary);
}

.footer-logo-icon {
  height: 38px;
}

.footer-logo-text {
  height: 26px;
}

.dashboard-hours-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.dashboard-hours-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dashboard-hours-total {
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
  color: #111827;
}

.dashboard-hours-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

.dashboard-hours-metric {
  border: 1px solid #eef1f4;
  border-radius: 14px;
  padding: 0.8rem;
  background: #fcfcfd;
}

.dashboard-hours-label {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.dashboard-hours-value {
  color: #111827;
  font-size: 1.05rem;
  font-weight: 800;
}

.dashboard-hours-progress {
  display: flex;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef1f4;
}

.dashboard-hours-progress-base {
  background: var(--uh-color-primary);
}

.dashboard-hours-progress-extra {
  background: #111827;
}

.dashboard-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.dashboard-insight {
  border: 1px solid #eef1f4;
  border-radius: 16px;
  background: #fcfcfd;
  padding: 1rem;
}

.dashboard-insight-label {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.dashboard-insight-value {
  color: #111827;
  font-weight: 800;
}

.dashboard-tip-list {
  display: grid;
  gap: 0.65rem;
}

.dashboard-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #4b5563;
  line-height: 1.5;
}

.dashboard-tip i {
  color: var(--uh-color-primary);
  margin-top: 0.2rem;
}

@media (min-width: 768px) {
  .app-sidebar {
    position: sticky;
    top: 73px;
    display: block;
    width: 248px;
    height: calc(100vh - 73px);
    padding: 1.1rem 0.85rem;
    border-right: 1px solid var(--uh-color-border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    overflow-y: auto;
    flex: 0 0 248px;
  }

  .app-main {
    width: calc(100% - 248px);
  }

  .app-footer-shifted {
    margin-left: 248px;
  }
}

@media (min-width: 992px) {
  .navbar .navbar-nav .app-nav-duplicate {
    display: none;
  }
}

/* ==========================================================================
   Shared cards / layout
   ========================================================================== */

.page-header-simple,
.section-card {
  background: var(--uh-color-surface);
  border: 1px solid var(--uh-color-border);
  border-radius: 22px;
  box-shadow: var(--uh-shadow-sm);
}

.card-custom {
  border: 1px solid var(--uh-color-border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--uh-color-text);
  margin-bottom: 1.25rem;
}

.info-soft-box,
.summary-soft-box {
  border-radius: var(--uh-radius-md);
  background: #fafafa;
  border: 1px dashed var(--uh-color-border);
}

.info-box {
  border-radius: var(--uh-radius-md);
  background: #fafafa;
  border: 1px dashed #e5e7eb;
}

.calendar-empty {
  border-radius: 16px;
  background: #fafafa;
  border: 1px dashed #e5e7eb;
}

.form-note,
.helper-note {
  color: var(--uh-color-text-soft);
}

.form-note {
  font-size: 0.86rem;
}

.helper-note {
  font-size: 0.88rem;
}

.info-item + .info-item {
  margin-top: 12px;
}

.summary-item + .summary-item {
  margin-top: 8px;
}

.info-label,
.summary-label {
  font-size: 0.82rem;
  color: var(--uh-color-text-soft);
  margin-bottom: 3px;
}

.info-value,
.summary-value {
  color: var(--uh-color-text);
  font-weight: 700;
}

.info-value {
  font-size: 0.98rem;
}

.summary-value {
  font-size: 1rem;
  font-weight: 800;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
}

/* ==========================================================================
   Shift forms
   ========================================================================== */

.flag-box {
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--uh-color-surface);
  height: 100%;
}

.flag-box .form-check {
  margin-bottom: 0;
}

.flag-box .form-check-label {
  font-weight: 600;
  color: var(--uh-color-text);
}

.flag-help {
  color: var(--uh-color-text-soft);
  font-size: 0.85rem;
  margin-top: 6px;
  line-height: 1.45;
}

.auto-holiday-note {
  display: none;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--uh-color-primary);
  font-weight: 600;
}

.auto-holiday-note.is-visible {
  display: block;
}

.segment-card {
  border: 1px solid #ececec;
  border-radius: var(--uh-radius-md);
  padding: 1rem;
  background: var(--uh-color-surface);
}

.segment-card + .segment-card {
  margin-top: 1rem;
}

.segment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
}

.segment-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--uh-color-text);
}

.segment-remove-btn {
  white-space: nowrap;
}

.overlap-warning {
  display: none;
  border-radius: 14px;
  background: rgba(220, 52, 59, 0.08);
  border: 1px solid rgba(220, 52, 59, 0.16);
  color: #b42318;
  font-size: 0.9rem;
}

.overlap-warning.is-visible {
  display: block;
}

.segment-holiday-fields {
  display: none;
}

.segment-holiday-fields.is-visible {
  display: block;
}

/* ==========================================================================
   Calendar / stats shared
   ========================================================================== */

.calendar-shell {
  background: var(--uh-color-surface);
  border: 1px solid #efefef;
  border-radius: var(--uh-radius-lg);
  color: var(--uh-color-text);
}

.calendar-hero-row,
.calendar-utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.calendar-hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.calendar-utility-bar {
  padding: 0.9rem;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  background: #fcfcfd;
}

.stat-card {
  background: var(--uh-color-surface);
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-card {
  background: var(--uh-color-surface);
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover,
.side-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.stat-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
}

.stat-inline-text {
  flex: 1;
  min-width: 0;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(220, 52, 59, 0.1);
  color: var(--uh-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.stat-label {
  color: var(--uh-color-text-soft);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #1f2937;
}

.calendar-stats-compact {
  display: grid;
  gap: 0.75rem;
}

.calendar-stat-row {
  padding: 0.85rem 0.95rem;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  background: #fff;
}

.calendar-stat-row .stat-inline {
  min-height: auto;
}

.calendar-stat-row .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 17px;
}

.calendar-stat-row .stat-label {
  font-size: 0.84rem;
  margin-bottom: 2px;
}

.calendar-stat-row .stat-value {
  font-size: 1.08rem;
}

.history-controls {
  padding: 1rem;
  border: 1px solid #f0f0f0;
  border-radius: var(--uh-radius-md);
  background: #fafafa;
}

.history-banner-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 52, 59, 0.1);
  color: var(--uh-color-primary);
  font-size: 1.1rem;
}

.calendar-week-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--uh-radius-pill);
  background: rgba(220, 52, 59, 0.08);
  color: var(--uh-color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.shift-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--uh-radius-pill);
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.shift-meta-badge.base {
  background: rgba(31, 41, 55, 0.1);
  color: #1f2937;
}

.shift-meta-badge.overtime {
  background: rgba(111, 66, 193, 0.12);
  color: #6f42c1;
}

.shift-meta-badge.holiday {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.fab-add-shift {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--uh-radius-pill);
  background: var(--uh-color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fab-add-shift:hover {
  color: #fff;
  transform: translateY(-2px);
  background: var(--uh-color-primary-hover);
}

.fab-add-shift i {
  font-size: 0.95rem;
}

/* ==========================================================================
   Modal helpers
   ========================================================================== */

.modal-soft-label {
  color: var(--uh-color-text-soft);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.readonly-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--uh-radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
}

.readonly-flag-badge i {
  font-size: 0.8rem;
}

.readonly-flag-badge.overtime.is-active {
  background: rgba(111, 66, 193, 0.12);
  color: #6f42c1;
}

.readonly-flag-badge.overtime.is-inactive {
  background: rgba(111, 66, 193, 0.08);
  color: rgba(111, 66, 193, 0.72);
}

.readonly-flag-badge.holiday.is-active {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.readonly-flag-badge.holiday.is-inactive {
  background: rgba(220, 53, 69, 0.08);
  color: rgba(220, 53, 69, 0.72);
}

/* ==========================================================================
   FullCalendar
   ========================================================================== */

.fc {
  --fc-border-color: #ececec;
  --fc-button-bg-color: var(--uh-color-primary);
  --fc-button-border-color: var(--uh-color-primary);
  --fc-button-hover-bg-color: var(--uh-color-primary-hover);
  --fc-button-hover-border-color: var(--uh-color-primary-hover);
  --fc-button-active-bg-color: #b72a30;
  --fc-button-active-border-color: #b72a30;
  --fc-today-bg-color: rgba(220, 52, 59, 0.07);
}

.fc-theme-bootstrap5 a,
.fc .fc-daygrid-day-number,
.fc .fc-col-header-cell-cushion {
  text-decoration: none !important;
}

.fc .fc-header-toolbar {
  margin-bottom: 1.25rem !important;
}

.fc .fc-toolbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
}

.fc .fc-toolbar-chunk {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

.fc .fc-toolbar-title {
  display: inline-block !important;
  margin: 0 6px !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: #212529;
  line-height: 1;
  white-space: nowrap !important;
  text-transform: lowercase;
}

.fc .fc-button-group {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.fc .fc-button {
  border-radius: 12px !important;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  margin: 0 !important;
  border: none !important;
}

.fc .fc-button:focus {
  box-shadow: none !important;
}

.fc .fc-col-header-cell {
  background: #f8f9fa;
  border: none;
  padding: 10px 0;
}

.fc .fc-col-header-cell-cushion {
  color: var(--uh-color-text-soft);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.fc .fc-daygrid-day {
  transition: background 0.2s ease;
}

.fc .fc-daygrid-day:hover {
  background-color: #fafafa;
  cursor: pointer;
}

.fc .fc-daygrid-day-number {
  color: #212529;
}

.fc .fc-daygrid-day-top {
  align-items: flex-start !important;
  position: relative;
}

.fc .fc-daygrid-day-events {
  margin-top: 4px;
}

.fc .fc-daygrid-event-harness {
  margin-bottom: 4px;
}

.fc .fc-daygrid-block-event {
  width: 100%;
}

.fc .fc-scrollgrid {
  border-radius: 14px;
  overflow: hidden;
}

.fc .fc-daygrid-event,
.fc .fc-timegrid-event {
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 0.85rem;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fc .fc-daygrid-event .fc-event-main,
.fc .fc-timegrid-event .fc-event-main {
  width: 100%;
  text-align: center;
}

.fc .fc-daygrid-block-event .fc-event-time,
.fc .fc-daygrid-block-event .fc-event-title {
  text-align: center;
}

.fc .fc-daygrid-event-dot {
  display: none !important;
}

.fc .holiday-day-cell {
  background: rgba(220, 53, 69, 0.08) !important;
}

.fc .holiday-day-cell .fc-daygrid-day-frame {
  background: rgba(220, 53, 69, 0.04);
}

.fc .holiday-day-number {
  color: #dc3545 !important;
  font-weight: 800;
}

.fc .holiday-day-label {
  display: inline-block;
  margin: 0;
  padding: 1px 6px;
  border-radius: var(--uh-radius-pill);
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.fc .holiday-day-label-wrap {
  position: absolute;
  top: 2px;
  left: 28px;
  width: calc(100% - 32px);
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}

.fc .fc-timegrid-event.shift-event-base,
.fc .fc-daygrid-event.shift-event-base {
  background: #1f2937 !important;
  border-color: #1f2937 !important;
  color: #fff !important;
}

.fc .fc-timegrid-event.shift-event-overtime,
.fc .fc-daygrid-event.shift-event-overtime {
  background: #6f42c1 !important;
  border-color: #6f42c1 !important;
  color: #fff !important;
}

.fc .fc-timegrid-event.shift-event-holiday,
.fc .fc-daygrid-event.shift-event-holiday {
  background: #dc3545 !important;
  border-color: #dc3545 !important;
  color: #fff !important;
}

.fc-event.shift-event-holiday {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* ==========================================================================
   History custom list
   ========================================================================== */

.history-list {
  display: grid;
  gap: 1rem;
}

.history-day-card {
  border: 1px solid #eceff3;
  border-radius: var(--uh-radius-md);
  background: var(--uh-color-surface);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.history-day-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 1rem 1.1rem;
  transition: background 0.18s ease;
}

.history-day-toggle:hover,
.history-day-toggle:focus {
  background: #fafafa;
  outline: none;
}

.history-day-toggle.is-open {
  background: #fafafa;
}

.history-day-heading {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr) 24px;
  align-items: center;
  gap: 1rem;
}

.history-day-date-wrap {
  min-width: 0;
}

.history-day-date {
  font-size: 1rem;
  font-weight: 800;
  color: var(--uh-color-text);
  line-height: 1.1;
}

.history-day-weekday {
  margin-top: 0.2rem;
  font-size: 0.86rem;
  color: var(--uh-color-text-soft);
  text-transform: capitalize;
}

.history-day-summary {
  min-width: 0;
}

.history-day-summary-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.history-day-summary-bottom {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.history-day-summary-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--uh-color-text);
  line-height: 1;
}

.history-day-summary-meta {
  font-size: 0.86rem;
  color: var(--uh-color-text-soft);
  font-weight: 600;
}

.history-day-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--uh-color-text-soft);
  transition: transform 0.18s ease, color 0.18s ease;
}

.history-day-toggle.is-open .history-day-chevron {
  transform: rotate(180deg);
  color: var(--uh-color-primary);
}

.history-day-panel {
  display: none;
  border-top: 1px solid #edf0f3;
  background: #fcfcfd;
}

.history-day-panel.is-open {
  display: block;
}

.history-day-panel-inner {
  padding: 1rem 1.1rem 1.1rem;
  display: grid;
  gap: 0.85rem;
}

.history-segment-card {
  border: 1px solid #eceff3;
  border-radius: 16px;
  background: #fff;
  padding: 0.95rem 1rem;
}

.history-segment-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.history-segment-time {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--uh-color-text);
  line-height: 1.1;
}

.history-segment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.history-segment-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.45rem;
  font-size: 0.84rem;
  color: var(--uh-color-text-soft);
  font-weight: 600;
}

.history-segment-actions {
  display: flex;
  justify-content: flex-end;
}

.history-segment-details {
  white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 768px) {
  .uh-card-body {
    padding: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .uh-logo-icon {
    height: 34px;
  }

  .uh-logo-text {
    height: 20px;
  }

  .top-vip-banner {
    font-size: 0.92rem;
  }

  .top-vip-banner-inner {
    gap: 10px;
  }

  .top-vip-banner-link {
    padding: 9px 12px;
  }

  .sticky-sidebar {
    position: static;
  }

  .calendar-shell {
    border-radius: 20px;
  }

  .calendar-hero-row,
  .calendar-utility-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-hero-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .calendar-hero-actions .btn,
  .calendar-utility-bar .btn {
    flex: 1 1 auto;
  }

  .side-card,
  .stat-card {
    border-radius: var(--uh-radius-md);
  }

  .fc .fc-toolbar {
    gap: 10px !important;
  }

  .fc .fc-toolbar-title {
    font-size: 1.05rem;
  }

  .fc .fc-button {
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
  }

  .history-day-heading {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .history-day-summary-bottom {
    justify-content: flex-start;
  }

  .history-day-chevron {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .top-vip-banner {
    font-size: 0.88rem;
  }

  .top-vip-banner-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: auto;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-vip-banner-text {
    align-items: flex-start;
    gap: 8px;
  }

  .top-vip-banner-copy {
    display: block;
    width: 100%;
    line-height: 1.5;
  }

  .top-vip-banner-cta {
    width: 100%;
  }

  .top-vip-banner-link {
    width: 100%;
    padding: 11px 14px;
    text-align: center;
  }

  .page-header-simple,
  .section-card,
  .segment-card {
    border-radius: var(--uh-radius-md);
  }

  .segment-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .segment-remove-btn {
    width: 100%;
  }

  .calendar-shell {
    padding: 1.25rem !important;
  }

  .stat-inline {
    gap: 12px;
    min-height: auto;
  }

  .stat-icon,
  .calendar-stat-row .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 17px;
  }

  .stat-label,
  .calendar-stat-row .stat-label {
    font-size: 0.84rem;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .calendar-stat-row {
    padding: 0.8rem 0.85rem;
  }

  .history-banner-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .fc .fc-toolbar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 10px !important;
  }

  .fc .fc-toolbar-chunk:first-child {
    justify-content: center !important;
  }

  .fc .fc-toolbar-chunk:last-child {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .fc .fc-toolbar-title {
    font-size: 1rem;
  }

  .fc .fc-col-header-cell-cushion {
    font-size: 0.72rem;
  }

  .fc .fc-daygrid-day-number {
    font-size: 0.82rem;
    padding: 4px;
  }

  .fc .fc-daygrid-event,
  .fc .fc-timegrid-event {
    font-size: 0.74rem;
    border-radius: 8px;
    padding: 2px 5px;
  }

  .fc .holiday-day-label {
    font-size: 0.58rem;
    padding: 1px 5px;
  }

  .fc .holiday-day-label-wrap {
    left: 24px;
    top: 1px;
    width: calc(100% - 28px);
  }

  .fab-add-shift {
    left: 16px;
    right: 16px;
    bottom: 14px;
    justify-content: center;
    width: auto;
    padding: 13px 16px;
    font-size: 0.95rem;
  }

  .history-day-toggle {
    padding: 0.95rem;
  }

  .history-day-panel-inner {
    padding: 0.95rem;
  }

  .history-segment-card {
    padding: 0.9rem;
  }

  .history-day-date {
    font-size: 0.96rem;
  }

  .history-day-summary-value {
    font-size: 0.96rem;
  }

  .readonly-flag-badge {
    font-size: 0.8rem;
    padding: 7px 10px;
  }
}

@media (max-width: 575.98px) {
  .top-vip-banner {
    font-size: 0.84rem;
  }

  .top-vip-banner-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-vip-banner-link {
    font-size: 0.88rem;
    padding: 10px 12px;
  }

  .uh-logo-icon {
    height: 30px;
  }

  .uh-logo-text {
    height: 18px;
  }

  .calendar-shell {
    padding: 1rem !important;
  }

  .fc .fc-button {
    font-size: 0.82rem;
    padding: 0.42rem 0.58rem;
    border-radius: 10px !important;
  }

  .fc .fc-toolbar-chunk {
    gap: 6px !important;
  }

  .fc .fc-toolbar-title {
    font-size: 0.95rem;
  }

  .fc .fc-daygrid-day-frame {
    min-height: 72px;
  }

  .fc .fc-daygrid-day-top {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
  }

  .stat-value {
    font-size: 1.2rem;
  }
}

.profile-hero {
  background: #fff;
  border: 1px solid rgba(220, 52, 59, 0.1);
  border-radius: var(--uh-radius-lg);
  overflow: hidden;
  color: var(--uh-color-text);
}

.profile-hero-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.profile-hero-settings-link {
  text-decoration: none;
  flex-shrink: 0;
}

.profile-hero-settings-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--uh-color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-hero-settings-link:hover .profile-hero-settings-icon {
  transform: translateY(-2px) scale(1.04);
}

.profile-grid-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--uh-color-text);
  margin-bottom: 16px;
}

.profile-divider {
  border: 0;
  border-top: 1px dashed var(--uh-color-border-strong);
  margin: 0 0 1.5rem;
}

.profile-plan-side .btn {
  min-width: 170px;
}

.info-card,
.rate-card,
.gdpr-card {
  background: var(--uh-color-surface);
  border: 1px solid #eceff3;
  border-radius: var(--uh-radius-md);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.rate-card:hover,
.gdpr-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.rate-label {
  color: var(--uh-color-text-soft);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.rate-value {
  color: var(--uh-color-text);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  word-break: break-word;
}

.vip-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--uh-radius-pill);
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
}

.vip-status-pill.active {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.vip-status-pill.inactive {
  background: rgba(220, 52, 59, 0.1);
  color: var(--uh-color-primary);
  border: 1px solid rgba(220, 52, 59, 0.16);
}

.soft-info-box {
  border-radius: var(--uh-radius-md);
  background: #fafafa;
  border: 1px dashed #e5e7eb;
}

.empty-state {
  border: 1px dashed #dfe3e8;
  border-radius: 20px;
  background: #fbfbfc;
}

.profile-page .form-control,
.profile-page .form-select {
  border-radius: 14px;
  border-color: var(--uh-color-border);
  min-height: 46px;
}

.profile-toggle-list {
  display: grid;
  gap: 0.85rem;
}

.profile-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  background: #fcfcfd;
  cursor: pointer;
}

.profile-toggle input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.profile-toggle strong,
.profile-toggle small {
  display: block;
}

.profile-toggle small {
  color: var(--uh-color-text-soft);
  line-height: 1.45;
  margin-top: 0.15rem;
}

.profile-security-stack {
  display: grid;
  gap: 0.9rem;
}

.profile-security-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  background: #fcfcfd;
}

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

.twofa-qr-wrap {
  display: inline-flex;
  padding: 0.8rem;
  border: 1px solid #edf0f3;
  border-radius: 18px;
  background: #fff;
}

.twofa-qr-wrap img {
  display: block;
  width: 196px;
  height: 196px;
}

.twofa-secret {
  text-align: left;
  border: 1px dashed var(--uh-color-border-strong);
  border-radius: 14px;
  padding: 0.85rem;
  background: #fcfcfd;
  overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
  .profile-hero {
    border-radius: 20px;
  }

  .profile-hero-actions .btn {
    width: 100%;
  }

  .rate-value {
    font-size: 1.28rem;
  }

  .info-value {
    font-size: 0.98rem;
  }

  .empty-state,
  .soft-info-box,
  .info-card,
  .rate-card,
  .gdpr-card {
    border-radius: var(--uh-radius-md);
  }
}

@media (max-width: 767.98px) {
  .profile-hero {
    padding: 1.25rem !important;
    border-radius: var(--uh-radius-md);
  }

  .profile-hero h1 {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .profile-hero p {
    font-size: 0.94rem;
  }

  .profile-grid-title {
    font-size: 0.98rem;
    margin-bottom: 14px;
  }

  .info-card,
  .rate-card,
  .gdpr-card {
    padding: 0.95rem !important;
    border-radius: 16px;
  }

  .soft-info-box {
    padding: 1rem !important;
    border-radius: 16px;
  }

  .empty-state {
    padding: 1.5rem 1rem !important;
    border-radius: var(--uh-radius-md);
  }

  .vip-status-pill {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .info-label,
  .rate-label {
    font-size: 0.82rem;
  }

  .info-value {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .rate-value {
    font-size: 1.18rem;
  }

  .profile-plan-side {
    text-align: left !important;
  }

  .profile-plan-side .btn,
  .gdpr-card .btn,
  .gdpr-card .form-select,
  .gdpr-card .form-control {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .profile-hero {
    padding: 1rem !important;
  }

  .profile-hero-left {
    gap: 14px;
    align-items: flex-start;
  }

  .profile-hero h1 {
    font-size: 1.4rem;
  }

  .profile-hero p {
    font-size: 0.92rem;
  }

  .profile-hero-settings-icon {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }

  .info-card,
  .rate-card,
  .gdpr-card {
    padding: 0.9rem !important;
  }

  .soft-info-box {
    padding: 0.95rem !important;
  }

  .profile-grid-title {
    font-size: 0.95rem;
  }

  .info-label,
  .rate-label {
    font-size: 0.8rem;
  }

  .info-value {
    font-size: 0.92rem;
  }

  .rate-value {
    font-size: 1.08rem;
  }

  .vip-status-pill {
    width: 100%;
    justify-content: center;
  }
}

.contact-hero {
  background: #fff;
  border: 1px solid rgba(220, 52, 59, 0.1);
  border-radius: var(--uh-radius-lg);
  overflow: hidden;
  color: var(--uh-color-text);
}

.contact-hero-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-hero-icon-link {
  text-decoration: none;
  flex-shrink: 0;
}

.contact-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--uh-color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.contact-hero-icon-link:hover .contact-hero-icon {
  transform: translateY(-2px) scale(1.04);
}

.info-strip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #eceff3;
  border-radius: var(--uh-radius-md);
  background: #fcfcfd;
}

.info-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(220, 52, 59, 0.1);
  color: var(--uh-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-strip-text {
  color: var(--uh-color-text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-block-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--uh-color-text);
  margin-bottom: 14px;
}

.contact-side-stack {
  display: grid;
  gap: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-list-item i {
  color: var(--uh-color-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-textarea {
  min-height: 140px;
}

@media (max-width: 991.98px) {
  .contact-hero {
    border-radius: 20px;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-head {
    gap: 14px;
    align-items: flex-start;
  }

  .contact-hero-icon {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
  }

  .info-strip {
    border-radius: var(--uh-radius-md);
  }
}

.dashboard-hero {
  background: #fff;
  border: 1px solid rgba(220, 52, 59, 0.1);
  border-radius: var(--uh-radius-lg);
  overflow: hidden;
  color: var(--uh-color-text);
}

.dashboard-hero-user {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dashboard-profile-link {
  text-decoration: none;
  flex-shrink: 0;
}

.dashboard-profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--uh-color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.dashboard-profile-link:hover .dashboard-profile-avatar {
  transform: translateY(-2px) scale(1.04);
}

.warning-banner-modern {
  border-radius: 20px;
  border: 1px solid rgba(220, 52, 59, 0.18);
  background: linear-gradient(135deg, rgba(220, 52, 59, 0.1), rgba(220, 52, 59, 0.03));
}

.vip-teaser {
  border-radius: 22px;
  border: 1px solid rgba(220, 52, 59, 0.16);
  background: linear-gradient(135deg, rgba(220, 52, 59, 1), rgba(220, 52, 59, 1));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.vip-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: #fff;
}

.vip-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
}

.vip-list-item i {
  margin-top: 3px;
  flex-shrink: 0;
}

.quick-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  transition: all 0.22s ease;
  cursor: pointer;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(220, 52, 59, 0.35);
}

.quick-icon-box {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(220, 52, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--uh-color-primary);
  font-size: 22px;
}

.quick-title {
  color: #1f2937;
  font-weight: 700;
  font-size: 0.98rem;
}

.quick-desc {
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 6px;
  line-height: 1.4;
}

.mini-list-item {
  border-bottom: 1px solid #f3f4f6;
  padding: 14px 0;
}

.mini-list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 991.98px) {
  .dashboard-hero-actions {
    width: 100%;
  }

  .dashboard-hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .dashboard-hero-user {
    gap: 14px;
    align-items: flex-start;
  }

  .dashboard-profile-avatar {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }
}

.uh-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 100;
}

.uh-cookie-banner__inner {
    max-width: 1080px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    padding: 1rem 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.uh-cookie-banner__content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-width: 0;
}

.uh-cookie-banner__icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(220, 52, 59, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.1rem;
}

.uh-cookie-banner__title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111827;
}

.uh-cookie-banner__copy {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.uh-cookie-banner__copy a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.uh-cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex: 0 0 auto;
    align-items: center;
}

@media (max-width: 991.98px) {
    .uh-cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .uh-cookie-banner__actions {
        width: 100%;
        justify-content: stretch;
    }

    .uh-cookie-banner__actions .btn {
        flex: 1 1 auto;
    }
}
