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;
  background-image: url('/images/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.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;
}

/* Menu Styling */
.menu-text {
    color: #e1bf00;
}

.navbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #e1bf00 !important;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.nav-link {
  position: relative;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-weight: 500;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
}

    .nav-link:hover {
        background-color: #e1bf00;
        text-shadow: 0 0 8px rgba(220, 53, 69, 0.6);
        transform: translateY(-2px);
    }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #e1bf00;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* Table Styling */
.table {
  background-color: transparent;
  color: #e1bf00;
}

.table thead th {
  border-bottom-color: #e1bf00;
  color: #e1bf00;
  background-color: rgba(0, 0, 0, 0.3);
}

.table tbody tr {
  border-bottom-color: rgba(225, 191, 0, 0.3);
}

.table tbody tr:hover {
  background-color: rgba(225, 191, 0, 0.1);
}

/* Footer Styling */
footer {
  background-color: #1a1a1a;
  border-top-color: #e1bf00 !important;
  color: #e1bf00;
  font-size: 0.5em;
}

footer,
footer a,
footer p,
footer span,
footer div {
  color: #e1bf00 !important;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.toggle {
    border-color: #e1bf00
    background-color: black;
    color: #e1bf00;
}

.main{
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);

}

.info
{
    padding: 3rem;
}

.info-groupname, .info-license, .info-head
{
    padding: 2rem;
    font-size: 5rem;
    font-weight: bold;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.info-license {
    background-color: #e1bf00;
}

.info-head {
    background-color: gray;
    font-size: 2rem;
    color: white;
}