/* Navbar specific styles */
.navbar {
  transition: all 0.3s ease;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  background-color: rgba(10, 61, 98, 0.95);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  color: #fff;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(21, 101, 192, 0.8);
  color: #e3f2fd;
}

.links {
  color: #fff;
  text-decoration: none;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.links:hover {
  color: #e3f2fd;
}

.links i {
  margin-right: 0.5rem;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(10, 61, 98, 0.95);
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .form-inline {
    margin-top: 1rem;
    flex-direction: column;
  }
  
  .form-inline .btn {
    margin: 0.25rem 0;
    width: 100%;
  }
  
  .links {
    margin: 0.5rem 0;
    display: block;
    text-align: center;
  }
}

