
.glass-card {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
    padding: 30px;
    animation: fadeIn .6s ease;
}

.section-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #203a43;
}

.form-control {
    border-radius: 12px;
    padding: 10px 14px;
}

.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(44,83,100,.25);
}

.btn-save {
    background: linear-gradient(135deg,#36d1dc,#5b86e5);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-clear {
    border-radius: 30px;
    padding: 10px 25px;
}

.password-meter {
    height: 6px;
    border-radius: 10px;
}

.fade-divider {
    border-left: 1px solid rgba(0,0,0,.1);
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(15px);}
    to {opacity:1; transform:translateY(0);}
}



.toast{
  display: none;
  min-width: 20vw
}
.toast.show {
    display: block;
    opacity: 1;
    position: fixed;
    z-index: 99999999;
    margin: 20px;
    right: 0;
    top: 3.5rem;
}
.swal2-container{
    z-index: 99999999;
}
#preloader2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff82;
}

#preloader2:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: smaller;
    color: #000000cf;
    font-style: italic;
}
.glass-card {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
    padding: 30px;
    animation: fadeIn .6s ease;
}

.section-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #203a43;
}

.form-control {
    border-radius: 12px;
    padding: 10px 14px;
}

.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(44,83,100,.25);
}

.btn-save {
    background: linear-gradient(135deg,#36d1dc,#5b86e5);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-clear {
    border-radius: 30px;
    padding: 10px 25px;
}

.password-meter {
    height: 6px;
    border-radius: 10px;
}

.fade-divider {
    border-left: 1px solid rgba(0,0,0,.1);
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(15px);}
    to {opacity:1; transform:translateY(0);}
}



/* Card */
.card {
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-outline.card-info {
  border-top: 4px solid #0d6efd;
}

/* Table */
.table {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.table thead {
  background: #f1f5ff;
}

.table thead th {
  font-weight: 600;
  font-size: 14px;
  color: #0d6efd;
  text-align: left;
  border-bottom: none;
}

.table td {
  font-weight: 200;
   font-size: 14px;
  padding: 12px;
  text-align: left;
}

.table th.text-center,
.table td.text-center {
  text-align: center !important;
}

.table tbody tr {
  transition: background 0.2s ease, transform 0.1s ease;
}

.table tbody tr:hover {
  background-color: #f9fbff;
  transform: scale(1.002);
}

/* Badges */
.badge {
  min-width: 90px;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 500;
}

/* Action / Select button */
.btn-action {
  background: #0d6efd;
  color: #fff;
  border: none;          /* removes black border */
  outline: none;         /* removes focus outline */
  box-shadow: none;      /* removes Bootstrap / browser shadow */
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}

.btn-action:focus,
.btn-action:active {
  outline: none;
  box-shadow: none;
}


.btn-action:hover {
  background: #0b5ed7;
  color: #fff;
  text-decoration: none;
}

/* Truncate long text */
.truncate {
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

