.outer-div-about{
    width:100%;
    padding:20px;
    /* height:100vh; */
    background:rgb(189, 189, 189);
}
.inner-div-about{
    max-width:1200px;
    padding:60px;
    margin:auto;
    margin-top:1rem;
    margin-bottom: 2rem;
    color:black;
    font-size:.9rem;
    background:white;
    border-radius:5px;
    text-align: justify;
}

.inner-div-vin{
    max-width:1200px;
    margin:auto;
    margin-top:1rem;
    margin-bottom: 2rem;
    color:black;
    font-size:.9rem;
    border-radius:5px;
    text-align: justify;
}

.contact-form{
    width:100%;
    padding:10px;
    display:grid;
    gap:20px;
    margin:auto;
    grid-template-columns:repeat(2,1fr);
}
@media(max-width:800px){
    .contact-form{
        grid-template-columns:1fr;
        width:100%;
    }
}

.vin-form-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vin-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vin-form-container input[type="text"] {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.vin-form-container button {
    width: 100%;
    padding: 0.7rem;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vin-form-container button:hover {
    background-color: #0056b3;
}
.vin-results-wrapper {
    margin: 2rem auto;
    max-width: 800px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow-x: auto;
    padding: 1.5rem;
}

.vin-results-wrapper h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.vin-results-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.vin-results-wrapper th, .vin-results-wrapper td {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    text-align: left;
    vertical-align: top;
}

.vin-results-wrapper th {
    background-color: #343a40;
    color: white;
}

.vin-results-wrapper tr:nth-child(even) {
    background-color: #f9f9f9;
}

.no-results {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
}