/* Basic Reset & Body Styling */
body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

main {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

p {
    margin-bottom: 25px;
    color: #555;
}

/* Button Styling */
.button {
    display: inline-block;
    background-color: #3498db; /* Blue */
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #2980b9; /* Darker Blue */
}

/* Status Indicator Styling */
#status-container {
    margin-top: 30px;
    font-size: 1em;
    color: #666;
}

#server-status {
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block; /* Allows background/padding */
}

/* Status Colors */
.status-up {
    color: #2ecc71; /* Green */
    background-color: #eafaf1;
}

.status-down {
    color: #e74c3c; /* Red */
    background-color: #fdedec;
}

.status-checking {
    color: #f39c12; /* Orange */
    background-color: #fef5e7;
}