/* irr.css */

/* Change Log:
Version 1.5
- Set input width to 120px for improved readability.
- Added subtle box shadows and rounded corners for a professional look.
- Reduced column gap further for a tighter layout.
- Improved label and input alignment.
*/

/* General body and layout styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Main container for the content */
.main-container {
    max-width: 85%;
    margin: 40px auto; /* Center content and reduce vertical margin */
    padding: 20px;
}

/* Scenario Name Section */
.scenario-section {
    text-align: center;
    margin-bottom: 20px; /* Added spacing for better visual separation */
}

.scenario-section input[type="text"] {
    padding: 5px;
    width: 150px; /* Increased width for better readability */
    text-align: center;
}

/* Form Container and Columns */
.form-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px; /* Further reduced gap between columns */
    justify-content: space-between;
}

.form-column {
    flex: 1;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for professional appearance */
}

/* Adjust headings inside columns */
.form-column h2 {
    font-size: 1.1em; /* Consistent heading size */
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c2c2c;
}

/* Labels and Inputs */
.form-column label {
    display: block;
    font-size: 0.9em;
    margin-bottom: 5px;
    color: #555555;
}

.form-column input[type="text"],
.form-column select {
    width: 120px; /* Set inputs to a standard width */
    padding: 8px;
    margin-bottom: 12px;
    font-size: 0.9em;
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded edges for input fields */
}

/* Readonly input fields */
.form-column input[readonly] {
    background-color: #f0f0f0;
}

/* Buttons Styling */
.form-submit {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.form-submit input[type="submit"],
.form-submit button {
    padding: 10px 20px;
    font-size: 0.9em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit input[type="submit"] {
    background-color: #2a6e3f;
    color: white;
}

.form-submit button {
    background-color: #1a2744;
    color: white;
}

.form-submit input[type="submit"]:hover {
    background-color: #45a049;
}

.form-submit button:hover {
    background-color: #1a2744;
}

/* Prevent navbar and footer overlap */
body {
    padding-top: 60px;
    padding-bottom: 60px;
}
