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;
}







.custom-navbar {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    padding: 10px 20px;
}

    .custom-navbar .navbar-brand {
        color: white !important;
        font-size: 1.4rem;
    }

    .custom-navbar .nav-link {
        color: rgba(255,255,255,0.9) !important;
        font-weight: 500;
        margin-right: 5px;
        border-radius: 8px;
        transition: all .3s ease;
    }

        .custom-navbar .nav-link:hover {
            background: rgba(255,255,255,0.15);
            color: white !important;
        }

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
}

.dropdown-item:hover {
    background: #f1f5ff;
}

.card {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

@media (max-width: 991px) {

    .navbar-nav {
        margin-top: 10px;
    }

        .navbar-nav .nav-link {
            padding-left: 10px;
        }
}