html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


/* ===== Manage Layout ===== */
.manage-body {
  margin: 0;
  padding: 0;
}

.manage-sidebar {
  width: 240px;
  min-height: 100vh;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.manage-sidebar .nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: background 0.15s;
}

.manage-sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
}

.manage-topbar {
  height: 52px;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Mobile sidebar collapse */
@media (max-width: 991.98px) {
  .manage-sidebar {
    position: fixed;
    left: -240px;
    z-index: 1045;
    transition: left 0.25s ease;
  }
  .manage-sidebar.show {
    left: 0;
    box-shadow: 4px 0 16px rgba(0,0,0,0.3);
  }
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== Footer links ===== */
.footer-link:hover {
  color: #fff !important;
}



/* ===== Customer Sidebar active ===== */
.list-group-item.active a {
  color: white !important;
}