.page {
    width: calc(100% - 100px) !important;
    padding-right: 0px  !important ;
}

/* Make sure styles only affect the Input Helper page */
#input-helper {
    max-width: 1100px; /* Wider content */
    margin: auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Input fields and select dropdown */
#input-helper input,
#input-helper select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: rgb(236, 236, 236);
}

/* Checkbox container */
#input-helper .checkbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

/* Button styling */
#input-helper button {
    background: #007bff;
    color: white;
    padding: 12px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

#input-helper button:hover {
    background: #0056b3;
}

/* JSON Output */
#input-helper .input-helper-json-output {
    background: #f4f4f4;
    padding: 15px;
    margin-top: 20px;
    white-space: pre-wrap;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: monospace;
}

/* Styling for checkbox labels */
#input-helper .checkbox-container label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Added spacing for checkboxes */
#input-helper .checkbox-container input[type="checkbox"] {
    margin-right: 5px;
    align-items: left;
}

/* Input Helper specific sections */
#input-helper .input-helper-type-container {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #90caf9;
    margin-bottom: 20px;
}

#input-helper .input-helper-load-json {
    background: #ccc;
    border: 1px solid #979797;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#input-helper .input-helper-nested-section {
    margin: 15px 0;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
    color: #555;
}
