/* styles.css */

body {
  font-family: Arial, sans-serif;
  padding: 20px;
}

h1 {
  margin-bottom: 20px;
}

.progress-item {
  margin-bottom: 20px;
}

.label {
  display: block;
  margin-bottom: 5px;
}

.progress-container {
  width: 100%;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 30px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: #4c7faf;
  transition: width 0.5s ease;
}
