/* Center everything on the page */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    height: 100vh;
}

h1{
    margin-top: 5rem;
}

/* Style for the table container */
#dataDisplayContainer {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 60%;
    max-width: 800px;
}

/* Style the table */
#dataDisplayTable {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin: 0 auto;
}

/* Table header style */
#dataDisplayTable th {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    font-size: 16px;
    border-radius: 15px 15px 0 0;
}

/* Table rows and data cells */
#dataDisplayTable td {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Alternate row colors */
#dataDisplayTable tr:nth-child(even) {
    background-color: #f2f2f2;
}

#dataDisplayTable tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Hover effect on table rows */
#dataDisplayTable tr:hover {
    background-color: #ddd;
}

/* Button styles for test and actions */
button, input[type="submit"] {
    /* margin: 10px; */
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

#testBtn {
    background-color: #4CAF50;
    color: white;
}

#testBtn:hover {
    background-color: #45a049;
    color: #fff;
}

#loginForm{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#inputForm{
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="password"]{
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    background-color: rgb(217, 217, 217);
}

h1{
    text-align: center;
    margin-top: 2rem;
}

#loginStart, #pinPassEnter{
    background-color: white;
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 10%;
}

.btns{
    display: flex;
    justify-content: center;
    align-items: center;
}

#submitBtn, #backBtn, #registBtn{
    margin: 1rem;
}

#speedometerContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}