html {
  scroll-behavior: smooth;
  transition: all 0.5s ease;
}

body {
    background-color: #171717;
    color: white;
}
::selection {
    background-color: black;
    color: rgb(11, 154, 202);
}


.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #333; /* darker hover background */
  color: #fff; /* keep text white on hover */
}

.card-group {
    width: 1000px;
    background-color: #101010;
    border-radius: 15px;
}

.bg-dark-slightly {
    background-color: #101010;
    color: white;
}

@media (max-width: 320px) {
  .mobile-width-card {
    width: 320px;
  }
}

.bg-dark-body {
    background-color: #171717;
    color: white;
}

.toast-dark {
  background-color: rgba(33, 37, 41, 0.568);
}


.btn-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #2563eb; /* blue-600 */
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s;
}
.btn-link:hover {
  background-color: #1d4ed8; /* blue-700 */
}

.btn-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #93c5fd, 0 2px 4px rgba(0,0,0,0.1);
}


.a1 {
  user-select: none;
  position: relative;
  text-decoration: none;
  color: white;
}

.a1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%) scaleX(0);
  transform-origin: bottom;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.a1:hover::after {
  transform: translateY(50%) scaleX(1);
}

