body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100%;
  background: linear-gradient(135deg, #74ebd5, #ACB6E5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #343A40;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  margin-bottom: 10px;
  top: 20px;
  z-index: 1000;
  border-radius: 15px;
}

.navbar-logo img {
  max-height: 30px;
  transition: opacity 0.3s ease;
}

.navbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  margin-right: 20px;
}

.navbar-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold; 
}

.navbar-button {
  background-color: #0D445D;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 500;
}

.navbar-button:hover {
  background-color: #e8921e;
}

.container {
  margin-top: 30px;
}

.bento-box-skill-descriptions {
  background-color: #B1DBEF;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.bento-box-item {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative; /* Make positioning relative for precise control */
}
/* Container for title and score */
.title-score {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Space out the label and output */
  margin-bottom: 5px; /* Reduce spacing between title and score */
}

.title-score label {
  font-weight: bold; /* Make the label bold */
  font-size: 16px; /* Adjust font size if needed */
}

.title-score output {
  font-weight: bold;
  font-size: 18px;
  color: #333; /* Darker color to make the score stand out */
  margin-left: 10px; /* Adjust spacing if needed */
}

/* Rest of the CSS remains unchanged */
.skill-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 12px;
  background: #ddd;
  outline: none;
  opacity: 0.9;
  transition: opacity .2s;
  border-radius: 5px;
}

.skill-input:hover {
  opacity: 1;
}

.skill-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: #EE8100;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.skill-input::-moz-range-thumb {
  width: 30px;
  height: 30px;
  background: #EE8100;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-steps {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 5px;
  color: #666;
}

.slider-steps span {
  text-align: center;
  flex: 1;
  margin-left: -15px;
}

.slider-steps .number-start {
  margin-right: 4.5rem;
}

.slider-steps .number-end {
  margin-left: 3rem;
}


.validation-message {
  display: block;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .slider-steps .number-start {
    margin-right: 1.5rem;
  }
  
  .slider-steps .number-end {
    margin-left: 1rem;
  }
  
}