html {
  font-size: 14px;
  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 {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .main-container {
  flex: 1 0 auto;
}
body .footer {
  flex-shrink: 0;
}
body .header {
  flex-shrink: 0;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


.avatar-card-top-color {
  height: 150px;
  background-color: #3fc0f0; /* Customize as needed */
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.avatar-avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  position: absolute;
  top: 100px; /* 150px * 2/3 (50% overlap) */
  left: 50%;
  transform: translateX(-50%);
}

.avatar-card-body {
  padding-top: 60px; /* Space below avatar */
  text-align: center;
}

.profile-card {
  max-width: 36rem;
}
.avatar-circle {
  background-color: #ffffff;
  color: #114877;
  border: 0px solid white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition:
          transform 0.15s ease,
          box-shadow 0.15s ease;
}

.avatar-circle:active {
  transform: scale(0.95);
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2),
  0 0 3px rgba(0, 0, 0, 0.1);
}

.card .avatar-circle {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item .avatar-circle {
  width: 36px;
  height: 36px;
  font-size: 13px;
}

.user-details-table {
  margin-top: 20px;
  font-size: 0.9rem;
}

.user-details-table td {
  padding: .3rem .75rem;
}


.profile-editable-field {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.profile-edit-icon {
  cursor: pointer;
  font-size: 0.875em;
  color: #6c757d;
}

.profile-edit-icon:hover {
  color: #0d6efd;
}

.input-group-xs .form-control,
.input-group-xs .btn {
  font-size: 0.75rem;
  padding: 0.1rem 0.5rem;
  height: auto;
}

.lead {
  font-weight: 700;
}
.welcome-text {
  /*max-width: 500px;*/
}


.myEdurinoLockBadge {

  background-color: white;
  display: inline-block;
  width: 100px;
  height: 100px;
  position: relative;
  top: -100px;
  border-radius: 50px;
  box-shadow: 1px 4px 14px -9px rgb(68, 85, 91,  .75);
  -webkit-box-shadow: 1px 4px 14px -9px rgb(68, 85, 91,  .75);
  -moz-box-shadow: 1px 4px 14px -9px rgb(68, 85, 91,  .75);
}

.myEdurinoLockContainer {
  width: 100%;
  text-align: center;
  height: 0px;
}

.myEdurinoLock {

  position: relative;
  top: 20px;
  width: 60px;
  height: 60px;
}

.lockCard {
  border: 0px;
  margin-top: 4rem;
}

.card, .dropdown-menu {

  box-shadow:  1px 4px 14px -9px rgb(68, 85, 91,  .75);
  -webkit-box-shadow:  1px 4px 14px -9px rgb(68, 85, 91,  .75);
  -moz-box-shadow:  1px 4px 14px -9px rgb(68, 85, 91,  .75);
}

.lockCard .card-header {
  background: transparent;
  border: 0;
  margin-top: 3rem;
}

.lock-inline{
  display: inline;
  position: relative;
  top: -.1em;
}

.footer ul {
  list-style: none;
}

.nav-item.dropdown .avatar-circle{
  cursor: pointer;
}

@media screen and (max-width: 990px) {
  .navbar-brand {
    margin: 0; /* disable centered brand */
  }
}

.toast {
  opacity: 1;
  transition: opacity 1s ease-out; /* Smooth fade out */
  left: 50%; 
  transform: translateX(-50%); 
  z-index:1080; 
  position: absolute; 
  display: block;
}


.fade-out {
  opacity: 0;
}