html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@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;
}

body {
    margin-bottom: 60px;
    background-color: #dceeff;
    font-family: Roboto, sans-serif;
}

footer{
    background-color:#0072de0c;
    color: #26262c;
    position: absolute;
    bottom:0;
    width: 100%
}

/*Layout*/

#div-navbar-layout {
    background-color: #87c6ea;
    min-height: 50px;
}

.layout-module-card {
    background-color: #b8dafb;
    border: 2px solid #9cc2f7;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 30px;
    padding: 20px;
    margin: 20px 0px 20px 0px;
    box-shadow: 5px 5px 10px #888888;
}

    .layout-module-card:hover {
        box-shadow: 0 0 15px 3px #80dfff;
        transform: translateY(-5px);
    }

.btn-nav-item {
    background-color: #9acff0;
    border: 2px solid #75b5d9;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
    padding: 10px 20px 10px 20px;
    margin: 8px 0px 8px 0px;
}

    .btn-nav-item:hover {
        box-shadow: 0 0 15px 3px #5eb5e1;
        transform: translateY(-3px);
    }

#btn-nav-item-logout {
    background-color: #8DCAF0;
    border: 2px solid #75b5d9;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
    padding: 10px 20px 10px 20px;
    margin: 8px 0px 8px 0px;
}

    #btn-nav-item-logout:hover {
        box-shadow: 0 0 10px 3px #6DA0F7;
        transform: translateY(-1px);
    }