body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #a2d4f2, #d0f0c0);
    margin: 0;
    padding: 2rem;
}

h1, h2 {
    text-align: center;
    color: #034078;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    max-width: 800px;
    /* min-width: 600px; */
    margin: 2rem auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #034078;
    color: white;
    font-size: 1.2rem;
}

tr:last-child td {
    border-bottom: none;
}

input[type="datetime-local"],
input[type="number"] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 90%;
    font-size: 1rem;
}

button {
    background-color: #28a745;
    color: white;
    padding: 0.7rem 1.2rem;
    margin-top: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 2rem auto;
}

button:hover {
    background-color: #218838;
}

#addMeasurement {
    background-color: #007bff;
    font-weight: bold;
}

#addMeasurement:hover {
    background-color: #0056b3;
}
