body {
  margin: 0;
  font-family: Arial;
  background: #f5f5f5;
}

/* TOP */
#top-bar {
  background: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

/* SEARCH */
#search-container {
  padding: 10px;
  text-align: center;
}

#search-bar {
  width: 90%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

/* PICK TEXT */
#pick-text {
  text-align: center;
  font-weight: bold;
  color: black;
  margin: 10px 0;
  font-size: 18px;
}

/* LOADING BOX */
#loading-box {
  width: 90%;
  margin: 10px auto;
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* CENTER CIRCLE */
.circle {
  position: relative;
  width: 90px;
  height: 90px;
  margin: auto;
}

/* SVG */
.circle svg {
  width: 90px;
  height: 90px;
  transform: rotate(-90deg);
}

/* BACKGROUND RING */
circle.bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 10;
}

/* PROGRESS RING */
circle.progress {
  fill: none;
  stroke: #1d9bf0;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 251;   /* circle length */
  stroke-dashoffset: 251;  /* hidden at start */
  transition: stroke-dashoffset 0.1s linear;
}

/* TEXT */
#loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

/* UNI GRID */
#uni-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
}

/* UNI BOX */
.uni-card {
  background: white;
  border: 2px solid #1d9bf0;
  border-radius: 12px;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.uni-card:hover {
  background: #e9f4ff;
}

/* FAI BUTTON */
#fai-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #1d9bf0;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.circle svg {
  display: block;
  transform-origin: center;
}