body {
  background-color: #dbbaff;
  filter: brightness(100%);
  font-family: "Times New Roman", Times, serif;
}
.progress-container {
  margin-bottom: 20px;
}

.segmented-progress-bar {
  display: flex;
  gap: 0;
  width: 95%;
  height: 23px;
  background-color: #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.progress-segment {
  cursor: pointer;
  position: relative;
}

.progress-segment:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  z-index: 10;
  margin-bottom: 5px;
}

.empty-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20px;
  background-color: #e0e0e0;
  color: #666;
  font-size: 12px;
  border-radius: 8px;
  font-style: italic;
}

#progressText {
  font-size: 13px;
  text-align: right;
  margin-top: 2px;
}
footer {
  padding: 14px;
  font-size: 12px;
  margin-top: auto;
}
#clearAllBtn {
  border-radius: 10px;
  background-color: #9900ffed;
  font-weight: bold;
  box-sizing: border-box;
  transition: all 0.3s ease;
  padding: 10px 20px;
}
#clearAllBtn:hover {
  background-color: red;
  transform: scale(1.1);
}

.learning-item {
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.learning-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

#learningList {
  max-width: 600px;
  margin: auto;
}

#confirmationModal {
  background-color: #f8f9fa;
  border: 2px solid #9900ffed;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}
