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;
}

.main-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    transition: all 0.2s;
    background: #fff;
}

    .sidebar:hover {
        width: 220px;
        min-width: 220px;
        max-width: 220px;
        box-shadow: 2px 0 8px rgba(32,107,196,0.08);
    }

    .sidebar .nav-link-title {
        opacity: 0;
        transition: opacity 0.2s;
        white-space: nowrap;
    }

    .sidebar:hover .nav-link-title {
        opacity: 1;
    }

    .sidebar .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
    }

        .sidebar .nav-link img {
            width: 28px;
            height: 28px;
        }

    .sidebar .navbar-brand-image {
        width: 36px;
        height: 36px;
    }

    .sidebar .navbar-brand {
        justify-content: left;
        display: flex;
        padding: 16px 10px;
    }

.page-content {
    flex: 1 1 auto;
    background: #f8fafc;
    min-height: 100vh;
}