.container {
    width: 70%;
    display: flex;
    flex-direction: column; /* Stack columns vertically */
    padding: 20px;
    border: 1px solid #ccc; /* Outer border */
    border-radius: 8px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}
.title-para{
    margin-bottom:25px;
}
.column-full {
    /* display: flex; Allows columns to be side by side */
    /* justify-content: space-between; */
    margin-bottom: 20px; /* Space between columns and buttons */
}

.column-left, .column-right {
    /* width: 48%; */
    padding: 20px;
    background-color: #fff; /* White background for columns */
    border-radius: 8px; /* Rounded corners */
}

h2 {
    font-size: 24px;
    border-bottom: 2px solid #007bff; /* Blue underline for headers */
    padding-bottom: 10px; /* Spacing under the header */
    margin-top: 20px; /* Margin above the header */
    margin-bottom: 15px; /* Margin below the header */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}


label {
    display: block;
    margin-top: 10px;
    margin-bottom:5px;
}

textarea, input[type="text"] {
    width: 100%; /* Full width for input fields */
    border: 1px solid #ccc; /* Border for input fields */
    border-radius: 4px; /* Rounded corners */
    padding: 10px; /* Padding inside input fields */
}

.buttons {
    display: flex;
    justify-content: flex-end; /* Align buttons to the right */
    margin-top: 20px; /* Space above buttons */
}

.buttons button {
    margin-left: 10px; /* Space between buttons */
    padding: 10px 20px; /* Padding for buttons */
    border: none; /* Remove default border */
    border-radius: 4px; /* Rounded corners for buttons */
    background-color: #007bff; /* Blue background for buttons */
    color: white; /* White text for buttons */
    cursor: pointer; /* Pointer cursor on hover */
}

.buttons button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
.requiredspan {
    color: red;
}