@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
body {
    margin: 0;
    padding: 0;
    List-style: none;
    background-color: #F4F5FF;
}

header {
    background-color: #fff;
    color: #000;
    padding: 15px 0;
    border-top: 0.5px solid #D3D3D3;
}
.logo img {
    width: 150px;
    height: auto;
    align-items: center;
    padding: 10px;

}
.header2-content {
    width: 100%;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    margin-top: 15px;
    margin-bottom: 20px;
}
.header-content {
    max-width: 10%;
    display: flex;
    align-items: center;
    margin-left: 10%;
}


.title-bar h2 {
    margin: 0;
}

body,
input,
textarea {
  font-family: 'JetBrains Mono';
  
}

.container {
    width: 85%;
    margin: 0 auto;
    background-color: #F4F5FF;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 0.5px solid #000;
}

.container-header {
    background-color: #0077CC; 
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 100;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: -1%;
    margin-top: -1%;
}

h1 {
    text-align: center;
    color: #333;
    margin-top: 20px; /* Added space after header */
}

.container .box {
    padding: 20px 15px;
}

.box {
    background-color: #F4F5FF;
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    overflow-y: auto;
}




h1 {
    text-align: center;
    color: #333;
}

.health-selections {
    margin-left: 15%;
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(50px, auto);
    overflow: hidden; 
}

.selection-group {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1 1 5%; /* Adjust width based on available space */

}

.selection-group label {
    font-weight: bold;
    margin-left: 8px;
    margin-right: 2px;
    white-space: nowrap;
}

.selection-group select {
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
    min-width: 80px;
}


#combinations-container {
    margin-bottom: 20px;
}

.combination {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

label {
    margin-right: 10px;
}

input[type="number"] {
    width: 60px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 15px;
}

button:hover {
    background-color: #0056b3;
}

#quote-result {
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
}

span {
    margin-left: 10px;
}



