.tidyTable {
    font-family: 'Open Sans', sans-serif;
    font-size: 11pt;
    width: 100%;
    border-collapse: collapse;
}

.tidyTable th,
.tidyTable td {
    border: 1px solid #d3d3d3;
    padding: 8px;
    text-align: left;
}

.tidyTable th {
    background-color: #f2f2f2;
}

.tidyTable td:nth-child(2) {
    width: 5%;
    word-wrap: break-word;
}

.tidyTable td:nth-child(3) {
    width: 10%;
    word-wrap: break-word;
}

.tidyTable td:nth-child(10) {
    width: 20%;
    word-wrap: break-word;
}

.edit-icon, .save-icon {
    margin-left: 5px;
    color: #bbb;
    cursor: pointer;
}

.edit-icon:hover, .save-icon:hover {
    color: #888;
}

input[type="text"] {
    border: 1px solid #d3d3d3;
    border-radius: 0;
    padding: 4px;
}

input[type="text"].make-input {
    width: 80px;
}

input[type="text"].model-input {
    width: 160px;
}

input[type="text"].year-input {
    width: 40px;
}

/* Styling for the body, setting font and base color */
body {
    font-family: sans-serif; /* Using Helvetica, with fallbacks */
    color: #444444; /* Light gray text color */
}

/* Styling for paragraph elements */
p {
    font-weight: 400; /* Normal font weight */
    font-size: 1.6rem; /* Larger font size for readability */
}

/* Styling for H2 headings */
h2 {
    font-size: 2rem; /* Larger font size for headings */
    font-weight: 700; /* Bold font weight */
}

/* Base styles for desktop */
.offerForm {
    padding: 10px; /* Padding for desktop */
    width: 25%; /* Width for desktop */
}

.offerForm input, 
.offerForm select, 
.offerForm textarea {
    border: 1px solid lightgrey; /* Border for all input elements */
    width: 100%; /* Full width for all input elements */
    box-sizing: border-box; /* Include padding and border in the element's total width */
    padding: 8px; /* Provides padding inside the input */
    margin: 0 0 10px; /* Adds bottom margin for spacing between fields */
    font-size: 14px; /* Font size for all input elements */
    font-family: Arial, sans-serif; /* Font family for all input elements */
}

.offerForm textarea {
    height: auto;
    min-height: 10em; /* Equivalent to 10 rows */
    resize: vertical; /* Allow vertical resizing if desired */
}

.offerForm button[type="submit"] {
    background-color: #2a68a4; /* Background color for the submit button */
    color: white; /* Text color for better readability */
    padding: 10px 20px; /* Padding for the button */
    border: none; /* Remove default border */
    display: block; /* Make the button a block element */
    margin: 0 auto; /* Center align the button */
    cursor: pointer; /* Cursor pointer when hover over the button */
    width: 75%; /* Width for the submit button */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .offerForm {
        padding: 10px; /* Reduced padding for mobile */
        width: 100%; /* Full width on mobile */
    }
}