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;
}

.footer {
  margin-top: 3rem;
  background: #0f172a;
  color: #e5e7eb;
  padding: 60px 0 20px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h3 {
  color: #ffffff;
  margin: 0 0 20px;
  font-size: 18px;
}

.footer p,
.footer a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.8;
}

.footer a:hover {
  color: #38bdf8;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  margin-right: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .btn-group > .btn {
    flex: 1 1 auto;
    border-radius: 0.5rem !important;
  }

  .card-body {
    padding: 0.9rem;
  }
}
