:root {
  --bg: #fff;
  --text: #000;
}

body.dark {
  --bg: #1a1a1a;
  --text: #f5f5f5;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.styled-table {
    border-collapse: collapse;
    //margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    width: 100%;
    //min-width: 400px;
    //box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
    background-color: #444444;
    color: #ffffff;
    text-align: left;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #444444;
}
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}
/* Mobile full width */
@media (max-width: 699px) {
  .dropdown {
    position: static;
    width: 100%;
    border-left: none;
    border-right: none;
  }
}
.loginBtn {
  border: thin black solid;
  padding: 5px;
}
.clickable {
  display:inline-block;
  padding:10px 15px;
  background:#007bff;
  color:white;
  border-radius:6px;
  cursor:pointer;
}


/* Main content */
main {
  max-width: 800px;
  margin: auto;
  padding: 1rem;
}


  /* --size: size of the bullet (default ~ typical • size). Change to 0.5em or 0.8em as desired. */
  .pulse-bullet {
    --size: 0.6em;
    display: inline-block;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: #ffdb3d;                      /* yellow */
    box-shadow: 0 0 calc(var(--size) * 0.6) rgba(255, 234, 61,0.65),
                0 0 calc(var(--size) * 1.6) rgba(255, 234, 61,0.35);
    transform-origin: center;
    margin: 0 5px 0 0;
    /* animation applied via the .pulsing class so we can toggle it with JS if needed */
  }

  .pulse-bullet.pulsing {
    animation: pulse 3s infinite cubic-bezier(.5,.5,.5,1);
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
      filter: blur(0);
    }
    50% {
      transform: scale(1.4);
      opacity: 0.85;
      filter: blur(0.4px);
    }
    100% {
      transform: scale(1);
      opacity: 1;
      filter: blur(0);
    }
  }

  /* Respect user preference for reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .pulse-bullet.pulsing {
      animation: none;
    }
  }


