/* Basic styles - expand as needed */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #f4f6f8;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 300;
}

.gauge-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
    position: relative;
}

#indicatorDialCanvas {
    width: 100% !important;
    height: auto !important;
}

footer {
    width: 100%;
    max-width: 800px; /* Match container width or adjust as needed */
    text-align: center;
    margin-top: 40px; /* Space above the footer */
    padding-top: 20px; /* Space within the footer, above the text */
    border-top: 1px solid #e0e0e0; /* Optional: a light line above the footer */
}

.disclaimer, .copyright {
    font-size: 0.8rem; /* Small font */
    color: #888888;   /* Gray color */
    margin-bottom: 8px;
}

.disclaimer a {
    color: #777777; /* Slightly darker gray for links for visibility */
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

.info {
    font-size: 0.9rem;
    color: #555;
}

.info p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    .gauge-container {
        max-width: 90vw;
    }
}
