body {
  margin: auto;
  font-family: 'Arial', sans-serif;
  background: rgba(75, 75, 75, 0.56);
  align-items: center;
}

.card-container {
  max-width: 500px;
  margin: 20px auto;
  background: #14213D5E;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid #000;
}


/*

.header {
  background: #1f4fa3;
  color: white;
  padding: 2px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 5px solid #ff42b3;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1f4fa3;
    color: white;
    padding: 12px 16px;
    border-bottom: 5px solid #ff42b3;
  }
  .school-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
  }
  .school-name {
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
    flex: 1;
  }
  .menu a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
  }
  .menu a:hover {
    text-decoration: underline;
  }

*/












/* Existing header style */
.header {
  background: #14213D;
  color: white;
  padding: 2px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 5px solid #ff42b3;
}

/* Main header bar */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #14213D;
  color: white;
  padding: 10px 16px;
  border-bottom: 5px solid #ff42b3;
}

/* Logo + School name hyperlink */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.school-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

/* Smaller school name */
.school-name {
  font-size: 17px;
  font-weight: bold;
  margin-left: 10px;
}

/* Hamburger icon */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  display: none;
  z-index: 1;
  width: 100%;
  flex-direction: column;
  background: #E5E5E5A3;
  border-bottom: 5px solid #ff42b3;
  border-radius: 0px 0px 8px 8px;
}

.dropdown-menu a {
  padding: 12px;
  border-top: 1px solid #FCA311;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.dropdown-menu a:hover {
  background: #15387a;
}

/* Responsive behavior */
@media (min-width: 900px) {
  .dropdown-menu {
    display: none; /* Always hidden on desktop unless you want it visible */
  }
}



/* From Uiverse.io by csemszepp */ 
.container {
  width: 100%;
  height: 100%;
  --s: 25px; /* control the size */
  --c1: #1d1d1d;
  --c2: #4e4f51;
  --c3: #3c3c3c;

  background: repeating-conic-gradient(
        from 30deg,
        #0000 0 120deg,
        var(--c3) 0 180deg
      )
      calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
    repeating-conic-gradient(
      from 30deg,
      var(--c1) 0 60deg,
      var(--c2) 0 120deg,
      var(--c3) 0 180deg
    );
  background-size: var(--s) calc(var(--s) * 0.577);
}




















.content-box {
  background: #E5E5E5;
  padding: 15px;
  border-left: 5px solid #FCA311;
  margin-bottom: 20px;
  border-radius: 6px;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #1f4fa3;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.btn:hover {
  background: #163a7a;
}

.profile-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.profile-card {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  border-left: 8px solid #ff42b3;
  text-align: center;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #1f4fa3;
  object-fit: cover;
}

.status.active {
  color: green;
  font-weight: bold;
}

.status.expire {
  color: red;
  font-weight: bold;
}


.holder-creator {
      background: #f5f5f5;
      border-left: 8px solid #FCA311;
      margin-bottom: 15px;
      padding: 12px;
      border-radius: 10px;
      cursor: pointer;
      transition: 0.3s;
    }


.holder {
      background: #f5f5f5;
      border-left: 8px solid #ff42b3;
      margin-bottom: 15px;
      padding: 12px;
      border-radius: 10px;
      cursor: pointer;
      transition: 0.3s;
    }
    .holder:hover { background: #e8e8e8; }

    .holder-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .holder-name {
      font-size: 18px;
      font-weight: bold;
    }

    .profile-pic-small {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      border: 3px solid #1f4fa3;
      object-fit: cover;
    }

    .holder-content {
      display: none;
      padding-top: 12px;
      text-align: center;
    }

    .profile-pic-large {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      border: 4px solid #1f4fa3;
      object-fit: cover;
      margin-bottom: 12px;
    }
    
  















  .card-container {
  position: relative;
}


.card-container .neon-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.card-container svg {
  width: 100%;
  height: 100%;
}

.card-container rect {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 0;
  animation: neon-trace 10s infinite linear;
}

@keyframes neon-trace {
  0% {
    stroke-dashoffset: 0;
  } 100% {
    stroke-dashoffset: -4000;
  }
}






