* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
}
body {
  background-color: #f3f4f6;
  color: #333;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  width: 50%;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
  font-size: 2.5rem;
  color: #1f2937;
}
.user-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: start;
}

.user-input-container {
  display: flex;
  justify-content: space-between;
}

#user-input {
  width: 80%;
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  transition: border-color 0.3s;
}
#user-input:focus {
  border-color: #3b82f6;
  outline: none;
}
#search-btn {
  padding: 0.6rem;
  border-radius: 5px;
  background-color: #3b82f6;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
#search-btn:hover {
  background-color: #2563eb;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #34d399;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: #1f2937;
  font-weight: 700;
  background: conic-gradient(#34d399 var(--progress-degree, 0%), #e5e7eb 0%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.circle:hover {
  transform: scale(1.05);
}
.circle span {
  position: relative;
  z-index: 2;
}

.progress {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}
.stats-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
}
.card {
  background-color: #f97316;
  width: 40%;
  max-width: 290px;
  border-radius: 10px;
  padding: 1rem;
  min-height: 6rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

h4 {
  font-size: 1.1rem;
  color: #1f2937;
}
