.navbar {
    position: relative;
    background: #1e252f;
    z-index: 1000;
}

.navbar .nav-link,
.navbar-brand {
    color: #fff !important;
    transition: all 0.3s ease;
}


.navbar .nav-link:hover {
    color: #ffffff !important;
    text-decoration: none; 
}

.navbar .nav-link.active {
    text-decoration: none !important;
    border-bottom: none !important;
    position: relative;
    font-weight: bold;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.logo-rounded {
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
}


.flash-container {
  max-width: 400px;
}

.flash-alert {
  animation: slideIn 0.5s ease;
  border-radius: 0.75rem;
  font-size: 0.95rem;
}

@keyframes slideIn {
  from {
    transform: translateX(30%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



