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;
}




/*
Navbar
*/
* {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: #30475e;
}

.navbar-brand {
    color: #ffffff;
    font-weight: bold;
}

.navbar-nav .nav-item .nav-link {
    color: #fff;
    position: relative;
    transition: 0.3s;
    font-weight: 400;
    color: #fff;
}

    .navbar-nav .nav-item .nav-link::before {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #f8b739;
        transition: 0.3s;
        color: #fff;
    }

    .navbar-nav .nav-item .nav-link:hover::before {
        width: 100%;
        color: #fff;
    }



/*
File Lister
*/




/*
Bulk Importer
*/
#drop-zone {
    width: 100%;
    height: 200px;
    border: 2px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #aaa;
}

    #drop-zone.hover {
        border-color: #333;
        color: #333;
    }

#file-list {
    margin-top: 20px;
}