body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  margin: 0;
  padding: 20px;
}

.container-bottleneck{
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}
#bottleneckForm {
    /* display: flex; */
    flex-direction: column; 
    align-items: center; 
    padding-left: 20%; 
    padding-bottom: 10%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

label {
  display: block;
  margin-bottom: 5px;
}
.form-group #cpu,
#gpu,
#game,
#resolution,
#graphicsSettings,
#ram,
#purpose {
  width: 80.5%;
}

input[type="text"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit {
  width: 80%;
  padding: 10px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#clearResults {
  width: 80%;
  padding: 10px;
  margin-top: 2%;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #218838;
}

.result {
  margin-top: 20px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
}

/* .charts {
    display: inline;
    justify-content: space-between;
    margin-top: 20px;
}

#myChart{
        width: 100%; 
        max-width: 600px; 
        height: 400px; 
    
}
*/

/* .charts canvas {
    border: 1px solid #ccc;
    border-radius: 4px;
} */

.form-group {
  position: relative;
  margin-bottom: 20px;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.suggestions {
  border: 1px solid #ccc;
  display: none; /* Initially hidden */
  position: absolute;
  background-color: white;
  z-index: 1000;
  max-height: 200px; /* Limit the height */
  overflow-y: auto; /* Enable scrolling */
  width: calc(83% - 2px); /* Adjust width to fit input */
}
.suggestion-item {
  padding: 10px;
  cursor: cursor;
}
.suggestion-item:hover {
  background-color: #f0f0f0; /* Highlight on hover */
}


#footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;
    font-size: 14px;
    background-color: #929292b8;
    border-top: 1px solid #ccc;
    border-radius: 20px;
}
