:root {
  --app-viewport-height: 100dvh;
  --bg: #f5efe7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-soft: rgba(255, 248, 240, 0.58);
  --line: rgba(26, 43, 79, 0.1);
  --line-strong: rgba(26, 43, 79, 0.18);
  --text: #16233d;
  --muted: #5f6d86;
  --primary: #e56b53;
  --primary-deep: #cf4f3d;
  --accent: #1c8b7e;
  --shadow: 0 24px 64px rgba(32, 45, 82, 0.14);
  --shadow-soft: 0 14px 30px rgba(32, 45, 82, 0.08);
  --radius-xl: 28px;
  --radius-lg: 19px;
  --radius-md: 14px;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 14.5px;
  }
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 217, 186, 0.9), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(123, 198, 188, 0.42), transparent 24%),
    linear-gradient(145deg, #f4ede4 0%, #f3f5fb 54%, #edf2f7 100%);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.mobile {
  min-height: var(--app-viewport-height, 100vh);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  touch-action: manipulation;
}

body.ios input,
body.ios select,
body.ios textarea {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand strong {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
}

.app-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.backdrop-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.8;
}

.orb-one {
  top: -90px;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(238, 132, 109, 0.32);
}

.orb-two {
  right: -100px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  background: rgba(66, 167, 154, 0.18);
}

.backdrop-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(18, 35, 68, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 35, 68, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 90%);
}

#wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  min-height: var(--app-viewport-height, 100vh);
}

.app-sidebar {
  width: 260px;
  padding: 0.95rem 0 0.85rem;
  margin: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(180deg, rgba(20, 31, 57, 0.96) 0%, rgba(33, 49, 87, 0.94) 100%);
  box-shadow: var(--shadow);
  border-radius: 28px;
  backdrop-filter: blur(18px);
}

.sidebar-brand .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  padding: 0.1rem;
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 14px 24px rgba(7, 18, 43, 0.24);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.navbar-brand strong,
.navbar-brand small {
  display: block;
}

.navbar-brand small {
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.sidebar-glass-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0.82rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.compact-card {
  padding: 0.78rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(229, 107, 83, 0.9);
  margin-bottom: 0.5rem;
}

.sidebar-glass-card .eyebrow {
  color: rgba(255, 207, 174, 0.88);
}

.intro-title {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

#sidebar .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.18rem 0.55rem;
  padding: 0.72rem 0.82rem;
  border-radius: 15px;
  color: rgba(255,255,255,0.82) !important;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

#sidebar .nav-link:hover,
#sidebar .nav-link:focus,
#sidebar .nav-link.active {
  background: rgba(255,255,255,0.1);
  color: #fff !important;
  transform: translateX(4px);
}

#sidebar .nav-link span.fa {
  width: 1.2rem;
  text-align: center;
}

#sidebar.collapsed {
  width: 78px;
}

#sidebar.collapsed .link-text,
#sidebar.collapsed .sidebar-intro,
#sidebar.collapsed .sidebar-footer,
#sidebar.collapsed .navbar-brand small,
#sidebar.collapsed .navbar-brand strong {
  display: none;
}

#sidebar.collapsed .navbar-brand {
  justify-content: center;
}

.app-main {
  padding: 0.75rem 0.75rem 1rem 0;
}

.page-frame {
  padding: 0;
}

.page-panel {
  min-height: calc(100vh - 1.5rem);
  min-height: calc(var(--app-viewport-height, 100vh) - 1.5rem);
}

body.mobile #wrapper,
body.mobile .app-main,
body.mobile .page-frame,
body.mobile .page-panel,
body.mobile .rental-wrapper,
body.mobile .rental-card,
body.mobile .content-panel,
body.mobile .dashboard-hero,
body.mobile .card,
body.mobile .table-responsive {
  max-width: 100%;
  min-width: 0;
}

body.mobile .app-main {
  width: 100%;
  padding: 0.85rem;
}

body.mobile .page-panel,
body.mobile .rental-wrapper {
  min-height: auto;
}

body.mobile .rental-wrapper {
  padding: 0 !important;
}

body.mobile .rental-card,
body.mobile .content-panel,
body.mobile .dashboard-hero {
  border-radius: 24px;
}

body.mobile .rental-header {
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

body.mobile .rental-header > *,
body.mobile .rental-header form,
body.mobile .rental-header .input-group,
body.mobile .rental-header .form-control,
body.mobile .rental-header .form-select {
  min-width: 0;
  max-width: 100%;
}

body.mobile .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.mobile img,
body.mobile video,
body.mobile iframe {
  max-width: 100%;
}

body.mobile .btn,
body.mobile .form-control,
body.mobile .form-select {
  min-height: 44px;
}

body.mobile .btn,
body.mobile a {
  -webkit-tap-highlight-color: rgba(229, 107, 83, 0.18);
}

.btn,
.form-control,
.form-select,
.modal-content,
.card,
.badge,
.table,
.list-group-item {
  border-radius: var(--radius-md);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.62rem 1rem;
  border: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-success {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #f19a67 100%);
  box-shadow: 0 18px 26px rgba(229, 107, 83, 0.22);
}

.btn-secondary,
.btn-outline-secondary:hover,
.btn-outline-light:hover {
  color: var(--text);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
}

.btn-outline-secondary,
.btn-outline-light {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
}

.form-control,
.form-select {
  min-height: 46px;
  border: 1px solid rgba(22, 35, 61, 0.08);
  background: rgba(255,255,255,0.82);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus {
  border-color: rgba(229, 107, 83, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(229, 107, 83, 0.14);
}

.modal {
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal-dialog,
.modal-content {
  pointer-events: auto;
}

body.mobile .modal-dialog {
  margin: 0.75rem;
  height: calc(var(--app-viewport-height, 100dvh) - 1.5rem);
  min-height: calc(var(--app-viewport-height, 100dvh) - 1.5rem);
  max-height: calc(var(--app-viewport-height, 100dvh) - 1.5rem);
  display: flex;
  align-items: center;
}

body.mobile .modal-content {
  height: 100%;
  max-height: calc(var(--app-viewport-height, 100dvh) - 1.5rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.mobile .modal-content > form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

body.mobile .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
}

body.mobile .modal-footer {
  flex: 0 0 auto;
}

.modal-backdrop {
  display: none !important;
}

.modal-content {
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.modal.fade .modal-dialog {
  transform: translateY(20px) scale(0.98);
  transition: transform 0.28s ease-out;
}

.modal.fade.show .modal-dialog {
  transform: translateY(0) scale(1);
}

.status-toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1200;
  display: grid;
  gap: 0.75rem;
  width: min(360px, calc(100vw - 2rem));
}

.status-toast {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 22px 44px rgba(24, 35, 67, 0.18);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.status-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.status-toast-success {
  background: linear-gradient(135deg, #1c8b7e 0%, #32b6a4 100%);
}

.status-toast-error {
  background: linear-gradient(135deg, #cf4f3d 0%, #ea7a61 100%);
}

.upload-progress-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(247, 241, 235, 0.82);
  backdrop-filter: blur(10px);
}

.upload-progress-overlay[hidden] {
  display: none !important;
}

.upload-progress-card {
  width: min(100%, 31rem);
  padding: 1.4rem 1.45rem;
  border-radius: 28px;
  border: 1px solid rgba(22, 35, 61, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.upload-progress-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(229, 107, 83, 0.94);
  margin-bottom: 0.55rem;
}

.upload-progress-title {
  margin: 0;
  font-size: 1.28rem;
}

.upload-progress-copy {
  margin: 0.7rem 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.upload-progress-bar {
  position: relative;
  overflow: hidden;
  height: 0.88rem;
  border-radius: 999px;
  background: rgba(224, 231, 255, 0.62);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.05);
}

.upload-progress-bar-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary) 0%, #f19a67 100%);
  box-shadow: 0 10px 22px rgba(229, 107, 83, 0.22);
  transition: width 0.18s ease;
}

.upload-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.upload-progress-percent {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
}

.upload-progress-phase {
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.payment-launch-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(12, 19, 35, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.payment-launch-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.payment-launch-card {
  width: min(440px, 100%);
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 28px 70px rgba(24, 35, 67, 0.22);
}

.payment-launch-eyebrow {
  color: #8a6b5d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-launch-title {
  margin: 0.35rem 0 0.45rem;
  color: #16233d;
  font-size: 1.35rem;
  font-weight: 800;
}

.payment-launch-copy {
  margin: 0;
  color: #5c6b84;
  line-height: 1.5;
}

.payment-launch-number-wrap {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(246, 248, 252, 0.96);
  border: 1px solid rgba(22, 35, 61, 0.08);
}

.payment-launch-number-label {
  display: block;
  color: #74829a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.28rem;
}

.payment-launch-number {
  display: block;
  color: #16233d;
  font-size: 1.1rem;
  font-weight: 800;
}

.payment-launch-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.login-page {
  min-height: 100vh;
  min-height: var(--app-viewport-height, 100vh);
}

.login-screen {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: var(--app-viewport-height, 100vh);
  padding: clamp(0.85rem, 2.4vw, 2rem);
}

.login-shell {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 34px 90px rgba(25, 39, 73, 0.18);
  backdrop-filter: blur(22px);
}

.login-hero {
  position: relative;
  min-height: 600px;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 210, 111, 0.28), transparent 27%),
    radial-gradient(circle at 86% 80%, rgba(75, 198, 220, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(17, 30, 58, 0.98) 0%, rgba(31, 54, 92, 0.96) 54%, rgba(21, 90, 104, 0.92) 100%);
}

.login-hero::after {
  content: "";
  position: absolute;
  inset: auto -7rem -9rem auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  border: 3rem solid rgba(255, 255, 255, 0.06);
}

.login-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.login-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex: 0 0 76px;
  padding: 0.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 22px 42px rgba(6, 17, 39, 0.26);
  filter: drop-shadow(0 18px 30px rgba(6, 17, 39, 0.18));
}

.login-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.98);
}

.login-hero h1 {
  max-width: 11ch;
  margin: 1.3rem 0 1rem;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.95;
}

.login-hero p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 1.04rem;
  line-height: 1.75;
}

.login-hero-card {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  max-width: 31rem;
  margin-top: auto;
  padding: 1.05rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.login-hero-card-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.14);
  color: #ffe3bd;
}

.login-hero-card-title {
  color: #fff;
  font-weight: 900;
}

.login-hero-card-copy {
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.login-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.login-feature-grid div {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.login-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250, 248, 244, 0.96)),
    #fff;
}

.login-card-head {
  margin-bottom: 1.55rem;
}

.login-card-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
}

.login-card-head p {
  max-width: 25rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.login-form {
  display: grid;
  gap: 1rem;
}

.login-validation {
  margin: 0;
  border: 1px solid rgba(207, 79, 61, 0.14);
  border-radius: 18px;
  background: rgba(207, 79, 61, 0.08);
  color: #9f3026;
}

.login-validation:empty,
.login-validation.validation-summary-valid {
  display: none;
}

.login-field {
  display: grid;
  gap: 0.42rem;
}

.login-field .form-label {
  margin: 0;
  color: #45556f;
  font-size: 0.88rem;
  font-weight: 800;
}

.login-input-wrap {
  position: relative;
}

.login-input-wrap > span {
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 2;
  transform: translateY(-50%);
  color: #8090a9;
}

.login-input-wrap .form-control {
  min-height: 50px;
  padding-left: 2.9rem;
  border-color: rgba(22, 35, 61, 0.1);
  background: rgba(246, 248, 252, 0.88);
  font-weight: 700;
}

.login-primary-action {
  min-height: 50px;
  margin-top: 0.2rem;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.45rem 0 1rem;
  color: #8794aa;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(22, 35, 61, 0.1);
}

.login-secondary-action + .login-admin-shortcut,
.login-config-note + .login-admin-shortcut {
  margin-top: 0.85rem;
}

.login-config-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(22, 35, 61, 0.08);
  border-radius: 18px;
  background: rgba(246, 248, 252, 0.78);
  color: #68758d;
  font-size: 0.86rem;
  line-height: 1.5;
}

.login-config-note .fa {
  margin-top: 0.15rem;
  color: var(--accent);
}

.login-admin-shortcut {
  padding: 0.9rem;
  border: 1px dashed rgba(28, 139, 126, 0.24);
  border-radius: 22px;
  background: rgba(28, 139, 126, 0.06);
}

.login-admin-shortcut .btn {
  border-color: rgba(28, 139, 126, 0.28);
  color: #176f65;
  background: rgba(255,255,255,0.68);
}

.login-admin-shortcut .form-text {
  margin-top: 0.55rem;
  color: #64758b;
  text-align: center;
}

.gallery-modal-close {
  top: 1rem !important;
  right: 1rem !important;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(18, 30, 55, 0.82) !important;
  box-shadow: 0 12px 24px rgba(18, 30, 55, 0.22);
  opacity: 1;
  filter: invert(1);
}

.table > :not(caption) > * > * {
  padding: 1rem 0.9rem;
  background: transparent;
  border-color: rgba(22, 35, 61, 0.06);
}

.table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.badge {
  padding: 0.55rem 0.8rem;
  font-weight: 800;
}

.footer {
  display: none;
}

@media (max-width: 991px) {
  .login-screen {
    align-items: start;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-hero {
    min-height: auto;
  }

  .login-hero h1 {
    max-width: 14ch;
  }

  .login-hero-card {
    margin-top: 2rem;
  }

  .app-sidebar {
    width: 78px;
    margin-right: 0.6rem;
  }

  .app-sidebar .link-text,
  .app-sidebar .sidebar-intro,
  .app-sidebar .sidebar-footer,
  .app-sidebar .navbar-brand small,
  .app-sidebar .navbar-brand strong {
    display: none;
  }

  .app-sidebar .navbar-brand {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .login-screen {
    padding: 0.8rem;
  }

  .login-shell {
    border-radius: 28px;
  }

  .login-hero,
  .login-card {
    padding: 1.35rem;
  }

  .login-brand-logo {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
  }

  .login-feature-grid {
    grid-template-columns: 1fr;
  }

  .login-card-head h2 {
    font-size: 2rem;
  }

  #wrapper {
    display: block;
  }

  .app-sidebar {
    display: none !important;
  }

  .app-main {
    padding: 0.9rem;
  }

  .page-panel {
    min-height: auto;
  }
}
