body {
    margin: 2rem;
    font-family: Montserrat,sans-serif;
    background-color: white;
}

body, main, section, div.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    margin-bottom: 2rem;
}

#logo {
    height: 80px;
    margin-right: 50px;
}

button {
    background-color: #e40a17;
    color: white;
    font-family: Montserrat,sans-serif;
    font-size: large;
    padding: 0.5rem;
}

button:disabled {
    background-color: #d0d0d0;
    color: black;
}

.hidden {
    display: none !important;
}

#vin-input {
    margin: 1rem;
    font-size: x-large;
}

#device-table-container {
    border: 1px solid black;
    margin-bottom: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

#device-table {
    border-spacing: 0px;
    width: 100%;
}

#device-table td {
    padding: 5px;
}

#device-table th {
    border-bottom: 1px solid black;
    min-width: 250px;
    padding: 5px;
    text-align: left;
}

#device-table tbody tr:hover {
    background-color: #e40a17;
    color: white;
    cursor: pointer;
}

#session-data {
    display: grid;
    gap: 8px 16px;
    grid-template-columns: auto 1fr;
    margin-top: 2rem;
    max-width: 500px;
}
