#main-container {
  background-color: var(--lt-gray-100);
  flex: 1;
}

.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2; /* or any other color */
    color: var(--bs-dark);
    font-weight: bold;
}

.highlighted {
  border: var(--bs-primary) solid 2px !important;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#navbar {
  transition: background-color 0.5s ease-out;
  border-bottom: 1px solid #ddd;
}
.navbar {
  font-size: 18px; /* Adjust the size as needed */
}

.navbar-light .navbar-nav .nav-link {
  transition: color 0.2s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #007bff; /* Bootstrap primary color for hover state */
}

.navbar-toggler {
  border-color: #ddd;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  background-color: #ddd;
}

/* Add animation for dropdown */
.dropdown-menu {
  display: none; /* Hide the menu initially */
  opacity: 0; /* Set initial opacity to 0 */
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.dropdown-menu.show {
  display: block; /* Show the menu when the dropdown is active */
  opacity: 1; /* Set opacity to 1 for fade-in effect */
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075)!important;
}

#footer {
  background-color: #f8f9fa; /* Slightly off-white for a soft look */
  color: #212529; /* Bootstrap's default dark shade for text */
}

#footer a {
  color: #007bff; /* Bootstrap primary color for links */
}

#footer a:hover {
  text-decoration: underline; /* Adds a bit of interaction on hover */
}

/* Hide spinners in WebKit browsers */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spinners in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Language select */
.language-selector-container {
    display: inline-block;
    margin: 10px 0;
}

#language-form {
    max-width: 300px;
    transition: all 0.3s ease;
}

#language-form:hover {
    transform: translateY(-1px);
}

.input-group-text {
    border: none;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#language-select {
    border: none;
    border-radius: 0 0.375rem 0.375rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

#language-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

#language-select:hover {
    background-color: #f8f9fa;
}

/* Custom option styling */
#language-select option {
    padding: 8px 12px;
}

/* Responsive design */
@media (max-width: 768px) {
    .language-selector-container {
        width: 100%;
    }
    
    #language-form {
        max-width: 100%;
    }
    
    .input-group-text {
        font-size: 0.875rem;
    }
}
