body {
    font-family: Arial, sans-serif;
    margin: 20px; 
    padding: 20px;
    background-image: url('fog3.jpg'); /* Replace with your image path */
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

h1, h2 {
    text-align: center;
}

h2 {
    color: #007bff; /* Change the color of all h2 elements to #007bff */
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"], input[type="number"], input[type="date"], select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 15px;
    background-color: #0000ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #007bff;
}
.large-textarea {
  width: 100%;
  min-height: 100px;
  max-height: 200px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  box-sizing: border-box;
}

/* Reduce spacing for compact layout */
#additional-info {
  margin-top: 20px !important;
  margin-bottom: 10px !important;
}

/* Adjust existing button container */
#calculate-container {
  margin-top: 20px;
}
.evaluation-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.evaluation-controls button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
}

.evaluation-controls h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.kpi {
    margin-bottom: 10px;
}

#scrollIndicator {
    position: fixed;
    top: 0;
    left: 0;  /* Moves it to the left side */
    width: 5px;  /* Slim vertical bar */
    height: 0%;  /* Will grow downward */
    background: linear-gradient(to bottom, #ff5733, #33ff57); /* Gradient effect */
    transition: height 0.1s ease-out;
    z-index: 9999;
}
#performanceChart {
    max-width: 100%;
    margin: 20px auto;
    display: block;
}

.score-value {
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
}

.score-low {
    background-color: #e74c3c; /* Red */
}

.score-medium {
    background-color: #f39c12; /* Yellow */
}

.score-high {
    background-color: #27ae60; /* Green */
}

.evaluation-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.score-box {
    flex: 1;
    text-align: center;
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 0.8rem;
    border-radius: 6px;
    max-width: 350px;
    margin: 0 auto;
}

.score-box ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    font-size: 0.95rem;
}
