﻿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;*/
}
/*.nav-link {
    width:100% !important;
}
.main-sidebar, .brand-link, brand-text:hover {
    width: 80px !important;
}*/

.control-sidebar, .control-sidebar::before {
    width:auto !important;
}

.control-sidebar-insert {
    position: fixed;
    top: 50px;
    right: -100%; /* Sidebar bị ẩn ở ngoài màn hình */
    width: 100%;
    /*height: 100vh;*/
    background-color: #cccccc;
    padding: 20px;
    transition: right 0.3s ease; /* Hiệu ứng di chuyển sidebar */
    overflow-y: auto;
}

    .control-sidebar-insert.open {
        right: 0; /* Di chuyển sidebar vào trong màn hình */
        overflow-y: auto;
        max-height: calc(100% - 145px);
    }

.open-btn {
    
}

.close-btn {
    /*background-color: red;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;*/
}