thead tr th,tbody tr td {
    font-size: 0.90rem;
}

table.content-table tr {
    background-color: lightgray;
}

.car-data-container {
    width: 1200px;
    margin: auto;
}

.search-input {
    width: 400px;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.error-msg {
    color: #FF0000;
}

.vehicle-template .vehicle-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.vehicle-template .section {
    margin-top: 15px;
}

.vehicle-template .section .section-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.vehicle-template .section .section-heading::after {
    display: block;
    margin-top: 5px;
    width: 100px;
    height: 5px;
    background-color: coral;
    content: " ";
    margin: auto;
}

.vehicle-template .section-value-container {
    margin-bottom: 10px;
}

.vehicle-template .section-value-container::before {
    display: block;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.15);
    margin-bottom: 10px;
}

.vehicle-template .section-value-container::after {
    clear: both;
    display: block;
    content: " ";
}

.vehicle-template .section-value-container .section-value-title {
    float: left;
    font-weight: 400;
    font-size: 0.90rem;
    color: #454545;
}

.vehicle-template .section-value-container .section-value-value {
    float: right;
    font-weight: 600;
    font-size: 0.90rem;
    color: #000000;
}

.vehicle-template .history-box {
    border-radius: 5px;
    padding: 15px;
    width: 200px;
    height: 120px;
    background-color: #ffffff;
    border-color: rgba(0,0,0,0.15);
    border-width: 1px;
    border-style: solid;
    display: inline-block;
    margin-right: 20px;
}

.vehicle-template .history-box .date {
    text-align: center;
    font-size: 1.0rem;
    font-weight: 400;
}

.vehicle-template .history-box .inspection-type {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
}

@media(max-width: 600px){
    .car-data-container {
        width: 95%;
    }
}