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;
}

input.no-spinner::-webkit-outer-spin-button, input.no-spinner::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.account-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ccc; /* Blue border, adjust color/thickness as needed */
    object-fit: cover;
  
}

/* Modal styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fff; margin: 10% auto; padding: 20px;
    border-radius: 15px; width: 350px; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.close {
    color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer;
}
.close:hover { color: #000; }

/* Highlight the active nav-link */
.nav-link.active, .nav-link:active {
    color: #1976d2 !important;           /* Text color when pressed/active */
    background-color: #ff0000 !important; /* Background color when pressed/active */
    border-radius: 6px;
}

.nav-link:hover {
    color: #fff !important;                /* Text color on hover */
    background-color: #333 !important;  /* Background color on hover */
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}