/* Styles for Interview Parameters Page */
.SIIDI_Designer .parameters-form-group {
    display: flex;
    gap: 3%; /* Reduce gap slightly for better alignment */
    margin-bottom: 12px; /* Add vertical space between rows */
}
.SIIDI_Designer .parameters-label-container {
    width: 32%;
}
.SIIDI_Designer .parameters-header-container {
    display: flex;
    gap: 3%; /* Match the gap of form-group */
    margin-bottom: 10px; /* Add some space below headers */
    width: 100%; /* Ensure it spans the full width */
}

.parameters-header {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.parameters-input,
.parameters-input:focus,
.parameters-input:hover,
.parameters-input:active {
    width: 32%; /* Match headers */
    padding: 8px;
    box-sizing: border-box;
    border: 2px solid #000; /* Match border styling */
    border-radius: 0 !important; /* Remove border radius */
}

.idi-param-value {
    width: 100%;
    margin-right: 10px;
}

.test-parameters-label {
    font-size: 16px;
    width: 100%; /* Width for URL Variable Name column */
}