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;
}

@media only screen and (max-width: 1024px) {
    .mobile-toggle-icon {
        display: block;
        cursor: pointer;
        font-size: 24px;
    }

    .sidebar-wrapper {
        transform: translateX(-100%);
        width: 250px;
        transition: transform 0.3s ease;
    }

        .sidebar-wrapper.show {
            transform: translateX(0);
        }

    /* Opsionale: Fshih sidebar nė mobile fillimisht */
    .sidebar-header .logo-text {
        display: none;
    }
    .sidebar-header {
        display: grid;
        grid-template-columns: 1fr auto auto; /* Tre kolona: logo, titulli, dhe ikona e mbylljes */
        align-items: center;
    }

}

/* Fshih ikonėn nė desktop */
@media only screen and (min-width: 1024px) {
    .mobile-toggle-icon {
        display: none;
    }
}