body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif; /* Example font */
    background-color: black; /* Set background to black */
    color: white; /* Set text color to white */
}

/* This will ensure that your container is centered and not just the text within it */
.container {
    width: 100%;
    max-width: 600px; /* Set a max-width for larger screens */
    padding: 20px;
    box-sizing: border-box;
    text-align: center; /* Center align the text for smaller elements */
}

/* This styles your form groups */
.form-group {
    margin-bottom: 20px;
}

/* Input fields styling */
input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    background-color: #333; /* Darker background for input */
    color: white; /* Text color for input */
    border: 1px solid #555; /* Slightly lighter border for visibility */
}

/* Button styling */
button#startAutoRefresh {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #555; /* Dark button background */
    color: white; /* Button text color */
    border: none; /* Remove default border */
}

/* Footer styling */
footer.footer {
    margin-top: 30px;
    padding: 20px;
    background: #303030; /* Darker grey for footer */
    color: #fff;
    text-align: center;
}

/* Links styling */
a {
    color: #00BFFF; /* Light blue color for links */
    text-decoration: none; /* Optional: removes underline from links */
}

a:hover {
    text-decoration: underline; /* Re-adds underline on hover for visual feedback */
}

/* Responsive styling */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}
