/* Stili per home/index: hero, navbar e form. */
@import url("variables.css");

/* Reset e regole base */
body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--bg-secondary);
}

/* Header */
header {
  background-color: var(--danger-color);
  color: var(--light-color);
  padding: var(--spacing-lg) 0;
}

header .logo img {
  width: 150px;
}

#togglePassword {
  cursor: pointer;
}

#passwordInput {
  border-radius: 0 4px 4px 0;
}

.carousel-inner {
  top: 10px;
}

nav ul {
  list-style-type: none;
  padding-left: 0;
}

nav ul li a {
  /*color: white;*/
  text-decoration: none;
  /*font-weight: bold;*/
}

/* Fai sì che l'intero body occupi l'altezza della finestra */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Hero Section (Carousel) */
#heroCarousel {
  height: 700px; /* Altezza fissa del carousel */
  position: relative; /* Rendi il carousel relativo per posizionare il caption */
  flex: 1;
  background-size: cover;
  background-position: center;
}

/* Stile del menu a tendina del login */
#loginFormDropdown {
  width: 310px;
}

.error-message {
  position: absolute; /* Cambiato da fixed ad absolute */
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffcccc;
  color: #ff0000;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid #ff0000;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 500;
}

input[type="email"],
input[type="password"] {
  cursor: text; /* Imposta il cursore a "text" */
}

#heroCarousel img {
  object-fit: cover; /* Fa sì che l'immagine riempia tutto lo spazio */
  height: 700px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

/* Stile del form di login nella sidebar */
.login-form-container {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

#loginFormContainer {
  position: relative;
  width: 100%;
  max-width: 320px;
}

#resetPasswordFields {
  margin-top: 20px;
}

#continueButton {
  margin-top: 10px;
}

.alert {
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
}
.d-none {
  display: none;
}

/* Styling del form all'interno del carousel */
.carousel-caption {
  position: absolute;
  top: 50%; /* Posiziona il caption al 50% dell'altezza del carousel */
  left: 50%; /* Posiziona il caption al 50% della larghezza */
  transform: translate(
    -50%,
    -50%
  ); /* Centra il caption sia orizzontalmente che verticalmente */
  background-color: rgba(0, 0, 0, 0.75); /* Sfondo più scuro e professionale */
  padding: 40px;
  border-radius: 20px; /* Bordi più arrotondati */
  width: 95%; /* Larghezza massima per sfruttare tutto lo spazio */
  max-width: 1000px; /* Larghezza massima aumentata per desktop */
  text-align: center;
  height: auto;
  min-height: 400px; /* Altezza minima per contenere tutto */
  z-index: 500;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); /* Ombra professionale */
}

/* Container per il form professionale */
.search-container {
  width: 100%;
}

.professional-search-form {
  width: 100%;
}

/* Header del form */
.form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Opzioni superiori con spaziatura aumentata */
.options-row-spaced {
  display: flex;
  justify-content: center;
  gap: 4rem; /* Aumentato da 2rem a 4rem */
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.option-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.option-item .form-check-input {
  margin: 0;
  vertical-align: middle;
  position: relative;
  top: -1px; /* Piccolo aggiustamento per allineamento perfetto */
}

.option-label {
  color: white;
  font-size: 0.9rem;
  margin: 0;
  cursor: pointer;
  line-height: 1;
}

/* Input super larghi per massimo spazio senza search-fields */
.input-group-wide {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.form-control-wide {
  border: none;
  padding: 14px 16px;
  font-size: 1rem;
  background: white;
  min-width: 450px; /* Massima larghezza per sfruttare tutto lo spazio disponibile */
  width: 100%;
}

.form-control-wide:focus {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
  border: none;
}

/* Pulsante di scambio allineato al centro */
.swap-btn-aligned {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 28px; /* Allineamento con i campi input */
}

.swap-btn-aligned:hover {
  background: white;
  transform: rotate(180deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Campi del form */
.search-fields {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.input-wrapper {
  margin-bottom: 0;
  position: relative; /* Necessario per il posizionamento assoluto delle suggestions */
}

.field-label {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
  text-align: left;
}

.input-group {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.input-group-text {
  background: white;
  border: none;
  padding: 12px 15px;
  font-size: 1.1rem;
}

.form-control {
  border: none;
  padding: 12px 15px;
  font-size: 1rem;
  background: white;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
  border: none;
}

/* Input estesi per fermate con nomi lunghi */
.input-group-extended {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.form-control-extended {
  border: none;
  padding: 14px 16px;
  font-size: 1rem;
  background: white;
  min-width: 250px; /* Larghezza minima per contenere nomi lunghi */
}

.form-control-extended:focus {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
  border: none;
}

/* Pulsante di scambio centrato */
.swap-btn-center {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.swap-btn-center:hover {
  background: white;
  transform: rotate(180deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Switch inline accanto al testo */
.switch-inline-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 15px;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.switch-text {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.switch-toggle-inline {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.switch-toggle-inline input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-inline {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  background-color: #ccc;
  border-radius: 22px;
  transition: 0.3s;
}

.slider-inline:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.switch-toggle-inline input:checked + .slider-inline {
  background-color: #0d6efd;
}

.switch-toggle-inline input:checked + .slider-inline:before {
  transform: translateX(18px);
}

/* Switch compatto per Andata e Ritorno */
.switch-compact-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-start;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.switch-toggle-compact {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch-toggle-compact input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-compact {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider-compact:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider-compact {
  background-color: #0d6efd;
}

input:checked + .slider-compact:before {
  transform: translateX(20px);
}

.switch-text-compact {
  color: #495057;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

/* Icone per pulsanti e link di autenticazione */
/* Pulsanti Accedi - SOLO per input submit senza icone HTML */
input[type="submit"][value="Accedi"]:not(.has-html-icon)::before,
input[type="submit"][value="Login"]:not(.has-html-icon)::before {
  content: "\f061"; /* fa-arrow-right - freccia verso destra */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}

/* Button con icone HTML hanno già tutto - nessun CSS aggiuntivo necessario */

/* Link Password dimenticata - gestito tramite HTML per evitare duplicazione */

/* Link Registrati (solo se non ha già l'icona) */
a[href*="email4"]:not(:has(i))::before,
a[href*="registrazione"]:not(:has(i))::before {
  content: "\f234";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 6px;
}

/* Responsive: Nascondi icone CSS su schermi molto piccoli */
@media (max-width: 575px) {
  input[type="submit"][value="Accedi"]:not(.has-html-icon)::before,
  input[type="submit"][value="Login"]:not(.has-html-icon)::before,
  a[href*="email4"]:not(:has(i))::before,
  a[href*="registrazione"]:not(:has(i))::before {
    display: none;
  }
}

/* Media query per mobile - mostra icona + testo ridotto */
@media (max-width: 576px) {
  /* Riduce solo leggermente il testo ma non lo nasconde completamente */
  .auth-responsive-text {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  .auth-responsive-text i {
    font-size: 1rem !important;
    margin-right: 4px !important;
  }
}

/* Per schermi molto piccoli - comportamento diverso per navbar vs sidebar */
@media (max-width: 480px) {
  /* Navbar: solo icone */
  .navbar .auth-responsive-text {
    font-size: 0 !important;
    padding: 0.5rem !important;
  }

  .navbar .auth-responsive-text i {
    font-size: 1.2rem !important;
    margin: 0 !important;
  }

  /* Sidebar: mantiene sempre il testo leggibile */
  .sidebar .auth-responsive-text {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  .sidebar .auth-responsive-text i {
    font-size: 1rem !important;
    margin-right: 4px !important;
  }
}

/* Pulsante di ricerca mini */
.search-btn-mini {
  background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 120px;
}

.search-btn-mini:hover:not(:disabled) {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.search-btn-mini:disabled {
  background: #6c757d;
  cursor: not-allowed;
  box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-caption {
    width: 95%;
    padding: 20px;
    min-height: auto;
  }

  .search-fields {
    padding: 1rem;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }

  .options-row {
    gap: 1rem;
  }

  .swap-btn {
    margin-bottom: 0.5rem;
  }
}

.carousel-caption .form-group {
  margin-bottom: 0; /* Rimuovi il margine inferiore dai campi del form */
}

/* Assicura che il form sia contenuto nel carousel-caption */
.carousel-caption form {
  width: 100%;
  max-width: 100%;
}

.carousel-caption .row {
  margin: 0;
  width: 100%;
}

/* Padding ridotto per evitare overflow */
.carousel-caption .col-12,
.carousel-caption .col-lg-1,
.carousel-caption .col-lg-2,
.carousel-caption .col-lg-3 {
  padding-left: 5px;
  padding-right: 5px;
}

/* Modal centrato */
.modal {
  display: none; /* Inizialmente nascosto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Sfondo scuro semi-trasparente */
  z-index: 9999; /* Assicurati che il modal sia sopra gli altri contenuti */
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Modal contenitore */
.modal-dialog {
  width: 100%;
  max-width: 400px;
}

/* Modal contenuto */
.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Modifica per migliorare la leggibilità */
.carousel-caption input,
.carousel-caption button {
  margin-bottom: 10px; /* Spazio tra gli elementi del form */
}

.navbar {
  background-color: #fff !important;
  height: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.navbar-toggler {
  /*background-color: black;*/
  border-radius: 15px; /* Modificato per arrotondare i bordi */
}

.nav-link {
  color: black !important;
}

.carousel-caption .mr-2 {
  color: #cf0a2c !important;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  background-color: white;
}

/* Altri stili */
.carousel-caption h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.carousel-caption .form-group label {
  color: white;
}

.carousel-caption button {
  background-color: #0063a8;
  border-color: #0063a8;
  color: #fff;
  width: 240px;
  height: 100%;
  font-size: 20px;
  border-radius: 5px;
  text-transform: uppercase;
}

.form-control input {
  flex: 1 0;
  margin-top: 0;
  width: 100%;
  min-width: 1px;
}

/* Stile al focus */
button[type="submit"]:focus {
  background-color: #0063a8 !important;
  border-color: #0063a8 !important;
  color: #fff !important;
  outline: none !important; /* Rimuove l'outline di default */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

/* Stile quando è attivo */
button[type="submit"]:active {
  background-color: #0063a8 !important;
  border-color: #0063a8 !important;
  color: #fff !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

/* Footer */
footer {
  background: transparent linear-gradient(180deg, #b2b2b2 0%, #444 100%) 0 0
    no-repeat padding-box !important;
  padding: 20px 0; /* Aggiunge spazio verticale */
  text-align: center; /* Allinea il testo al centro per dispositivi mobili */
}

.bg-dark {
  background: transparent linear-gradient(180deg, #b2b2b2 0%, #444 100%) 0 0
    no-repeat padding-box !important;
}

footer h5 {
  font-size: 1rem; /* Aumenta la dimensione del nome azienda */
  color: #f8f9fa; /* Colore bianco */
  margin-bottom: 10px; /* Spazio sotto il titolo */
}

footer p,
footer a {
  font-size: 0.875rem; /* Dimensione testo normale */
  color: #ced4da; /* Colore testo leggermente più chiaro */
}

footer a:hover {
  color: #ffc107; /* Colore giallo al passaggio del mouse sui link */
}

footer .container {
  max-width: 600px; /* Limita la larghezza del contenuto del footer */
  margin: 0 auto; /* Centra il contenuto */
}

.form-group {
  position: relative;
}

.bg-danger {
  background-color: #fff !important;
}

.bg-danger p {
  color: black !important;
}

.form-group label {
  position: absolute;
  top: 10px; /* Adjust based on your design */
  left: 20px; /* Adjust based on your design */
  transition: all 0.2s ease; /* Smooth transition */
  color: #999; /* Light color for the label */
  pointer-events: none; /* Allows click events to pass through */
}

/* To remove the default outline on focus */
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.form-control {
  justify-content: space-evenly;
  align-items: center;
  margin: 0;
  height: 44px;
  padding: 0 0 0 10px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-color: #fff;
  border: 0.5px solid;
  border-color: #c5c5c5;
  border-radius: 5px;
  text-align: center;
}

.suggestions-list {
  position: absolute;
  background-color: white;
  color: black;
  border: 1px solid #cccccc;
  width: 100%; /* Larghezza uguale al contenitore input-wrapper */
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  top: 100%; /* Posizionata subito sotto l'input */
  left: 0; /* Allineata a sinistra del contenitore */
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestions-list div {
  padding: 10px;
  cursor: pointer;
}

.suggestions-list div:hover {
  background-color: #f0f0f0;
}

.suggestions-list2 {
  position: absolute;
  background-color: white;
  color: black;
  border: 1px solid #cccccc;
  width: 100%; /* Larghezza uguale al contenitore input-wrapper */
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  top: 100%; /* Posizionata subito sotto l'input */
  left: 0; /* Allineata a sinistra del contenitore */
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestions-list2 div {
  padding: 10px;
  cursor: pointer;
}

.suggestions-list2 div:hover {
  background-color: #f0f0f0;
}

/* Stile per il toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: background-color 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: transform 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Stile per l'etichetta accanto allo switch */
/*label[for="andataRitorno"] {
    font-size: 16px;
    color: white;
    margin-bottom: 0;
}

.form-group.d-flex label {
    margin-bottom: 0;
}

.form .ml-2 {
color: white;
}*/

/* Stile per la finestra laterale */
.sidebar {
  position: fixed;
  top: 0;
  right: -250px; /* Nasconde la sidebar a destra */
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease; /* Transizione per l'apertura e chiusura */
  z-index: 1000; /* Assicura che sia sopra altri elementi */
  padding: 20px;
}

.sidebar.open {
  right: 0; /* Mostra la sidebar */
}

.sidebar ul {
  list-style-type: none;
  padding-left: 0;
}

.sidebar ul li {
  margin: 20px 0; /* Margine tra i link */
}

.sidebar ul li a {
  color: black; /* Colore del link */
  text-decoration: none; /* Nessuna sottolineatura */
  /*font-weight: bold;*/ /* Grassetto per i link */
}

.close-btn {
  cursor: pointer; /* Cambia il cursore per indicare che è cliccabile */
  font-size: 24px; /* Dimensione del carattere per la freccia */
  color: #d32f2f; /* Colore della freccia */
  margin-bottom: 20px; /* Spazio sotto la freccia */
  display: inline-block; /* Permette di gestire il margine */
}

.hidden {
  display: none; /* Nasconde gli elementi */
}

.mb-3 {
  margin-bottom: 0rem !important;
}

.mb-1 {
  margin-bottom: 0rem !important;
}

/* --- AGGIUNTE PER MOBILE --- */

/* Mobile */
@media (max-width: 480px) {
  /* Nasconde l'immagine del carousel sui dispositivi mobili */
  #heroCarousel img {
    display: none !important; /* Nasconde l'immagine di sfondo */
  }

  header .logo img {
    width: 120px;
  }

  /* Posiziona i campi del form uno sotto l'altro */
  .carousel-caption {
    position: static;
    transform: none; /* Rimuove la traslazione */
    background-color: rgba(0, 0, 0, 0.7); /* Sfondo trasparente scuro */
    padding: 20px; /* Aggiunge un padding adeguato per il form */
    height: auto; /* Lascia che l'altezza si adatti al contenuto */
    width: 100%;
    min-height: auto; /* Rimuove altezza minima su mobile */
  }

  /* Il nuovo form moderno si adatta automaticamente */
  .modern-search-form {
    max-width: 100% !important;
  }

  /* Layout verticale per i campi del form */
  .carousel-caption input,
  .carousel-caption button {
    /*width: 100%;*/ /* Campi larghi quanto il container */
    margin-bottom: 15px; /* Spazio tra i campi */
  }

  /* Riduzione della dimensione dei caratteri */
  .carousel-caption h2 {
    font-size: 1.5rem; /* Font size per dispositivi mobili */
  }

  footer h5 {
    font-size: 1.1rem; /* Ulteriore riduzione della dimensione del titolo */
  }

  footer p,
  footer a {
    font-size: 0.8rem; /* Ulteriore riduzione della dimensione del testo */
  }

  #sito-mail {
    flex-direction: column;
  }
}

/* Stile per il logo ridotto nella sidebar */
.sidebar-logo {
  padding: 8px 15px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 12px !important;
}

.sidebar-logo-img {
  max-width: 140px;
  max-height: 32px;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* Responsive per il logo nella sidebar */
@media (max-width: 768px) {
  .sidebar-logo {
    padding: 6px 10px;
    margin-bottom: 10px !important;
  }

  .sidebar-logo-img {
    max-width: 110px;
    max-height: 28px;
  }
}

@media (max-width: 480px) {
  .sidebar-logo {
    padding: 5px 8px;
    margin-bottom: 8px !important;
  }

  .sidebar-logo-img {
    max-width: 90px;
    max-height: 24px;
  }
}
