/* Base Reset */
body,
html {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: system-ui, sans-serif;
  display: flex;
  flex-direction: column;
}
/* For modern browsers */
/* Completely hide scrollbar but keep scroll */
html,
body,
main {
  overflow-y: scroll; /* Ensure scroll is still active */
  -ms-overflow-style: none; /* IE 10+ */
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Edge */
}
/* Layout Structure */
header,
footer {
  flex-shrink: 0;
}

main {
  flex-grow: 1;
  padding: 1rem;
}

/* App Card Styling */
.app-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.app-card.featured {
  background-color: #e6f4ea;
}

.app-card i,
.app-card img {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.ltr-input-group {
  direction: ltr !important;
  text-align: left;
}

.ltr-input-group input {
  direction: ltr;
  text-align: left;
}

.app-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
}

/* Header Icons */
.header-icons i {
  font-size: 1.4rem;
}

/* Footer */
footer {
  background: #f8f9fa;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
