h1, h2, h3, h4, h5 {
    color: #212529;
}

label, p, select, input {
    color: #212529;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 20px 20px 20px; /* Added top padding to avoid the navbar */
}

.option-group {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #948260;
    border-radius: 8px;
    background-color: #fff;
}

.additional-options {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #948260;
    border-radius: 8px;
    background-color: #fff;
}

label {
    font-weight: bold;
    margin-top: 10px;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #948260;
    border-radius: 4px;
    background-color: #fff;
    color: #212529;
}

.navbar {
    width: 100%;
    background-color: #333;
    position: fixed; /* Make it fixed */
    top: 0; /* Position it at the top */
    left: 0; /* Ensure it spans the full width */
    z-index: 1000; /* Ensure it is above other elements */
}

.custom-button {
    background-color: #293847;
    color: #e6d6b4;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block; /* Ensures buttons align properly */
    font-size: 16px;
    margin: 10px 0; /* Adjusted margin */
    cursor: pointer;
    border: 2px solid #948260;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-button:hover {
    background-color: #1f2c36;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align buttons to the left */
    width: 100%; /* Full width for better alignment */
}

.subtext {
    font-size: 0.9em;
    color: #6c757d;
    margin-top: -5px; /* Adjust based on spacing needs */
    margin-bottom: 5px; /* Adjust based on spacing needs */
}

.help-popup {
    position: fixed;                 /* stay in same place even when scrolling */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);/* center horizontally & vertically */
    z-index: 9999;
    width: 300px;                    /* adjust as needed */
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: none;
  }
  

#helpPopup p {
    margin: 0 0 10px;
    line-height: 1.4;
}

#helpPopup .entry {
    margin: 0 0 10px;
}

#helpPopup .entry b {
    font-weight: bold;
}
