/* Style for form container */
.form-container {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px; /* Adjust margin top as needed */
}

table {
    width: 100%;
}

th {
    width: 50%; /* Adjust table width as needed */
    padding: 5px;
}

ul {
    margin-top: 10px;
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    display: flex;
    align-items: center; /* Align items vertically */
}

.column {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: none;
    padding: 10px;
}

#details {
    min-width: 400px;
}

/* Style for each column */
#image {
    display: inline-block;
}

#image img {
    padding: 10px;
    max-width: 100%;
    max-height: 400px;
    height: auto;
    margin: 0;
    padding: 0;
}

.details label {
    font-weight: bold;
    text-align: left;
    width: 25%; /* Fixed width for labels */
}

.details input,
.details select {
    flex: 1; /* Take remaining space */
    width: 75%; /* Adjust based on label width */
    margin-left: 10px; /* Add margin for separation from labels */
    padding: 5px;
    box-sizing: border-box;
    font-size: 16px; /* Set the desired font size */
    text-align: right;
    border: 1px solid var(--accent-color);
}

#condition label,
#foiling label {
    width: 100%;
    display: inline-block; /* Use inline-block to align labels and inputs horizontally */
}

#condition input[type="radio"],
#foiling input[type="radio"] {
    display: block;
    margin-top: 0; /* Reset margin */
    margin-left: 20px; /**/
}

.submit-container {
    width: 100%;
    display: flex;
    margin-top: 10px;
}

.submit-container td {
    justify-content: center;
}

.submit-container input {
    width: 100%;
    text-align: center;
    cursor:pointer;
    border-radius: 5px;
    font-size: 16px;
    padding: 5px;
    margin-left: 5px;
    margin-right: 5px;
    box-sizing: border-box;
    border: 1px solid var(--accent-color);
}