.profile-info {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 35px;
}

.profile-info img {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.times {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.time-box {
  display: block;
  width: fit-content;
  padding: 10px;
  background: #e6e6e6;
  border-radius: 8px;
  text-decoration: none;
  color: black;
  transition: 0.2s;
}

.time-box:hover {
  background: #45b8ac;
}

html[data-theme="dark"] .time-box {
  background-color: #262626;
  color: #cccccc;
}

html[data-theme="dark"] .time-box:hover {
  background-color: #646464;
  color: #cccccc;
}

.stars {
  direction: rtl;
  display: inline-flex;
}

.stars input {
  display: none;
}

.stars label {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
}

.stars label:hover,
.stars label:hover~label {
  color: gold;
}

.stars input:checked~label {
  color: gold;
}

.star {
  font-size: 18px;
  color: #ccc;
}

.star.filled {
  color: #FFD700;
}