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;
}
.dashboard {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 220px;
    background-color: #343a40;
    color: white;
}

.sidebar-content {
    padding: 20px;
}

.sidebar ul {
    list-style-type: none;
    padding-left: 0;
}

    .sidebar ul li a {
        color: white;
        display: flex;
        align-items: center;
        padding: 10px;
        text-decoration: none;
    }

        .sidebar ul li a:hover {
            background-color: #495057;
        }

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background-color: #007bff;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
}

.top-bar-content {
    display: flex;
    align-items: center;
}

.content-area {
    padding: 20px;
    background-color: #f8f9fa;
    flex-grow: 1;
}
