body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
}

.temperature-gauge {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.temperature-gauge svg {
    width: 200px;
    height: 200px;
}

.scrollable-table {
    width: 50%;
    overflow-y: auto;
    padding: 20px;
}
/* CSS for form inputs */
input[type="date"],
input[type="text"],
input[type="number"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    width: 100%;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* CSS for table */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

.cf-turnstile {
    display: inline-block;
}

@media screen and (min-width: 1000px) {
    .container {
        flex-direction: row;
    }
    .gauge-container, .table-container {
        width: 50%;
    }
}
