
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.status-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.status-light-red {
    width: 15px;
    height: 15px;
    background-color: #e74c3c; /* Red */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.7);
}

.status-light-green {
    width: 15px;
    height: 15px;
    background-color: #2ecc71; /* Green */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.7);
}

#status-text {
    font-size: 1.1rem;
    color: #555;
}

.buttons button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.buttons button:hover {
    background-color: #2980b9;
}

.buttons button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.output-container {
    margin-top: 2rem;
    text-align: left;
}

h2 {
    color: #2c3e50;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.log-output {
    background: #ecf0f1;
    height: 150px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 5px;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.9rem;
    color: #333;
    white-space: pre-wrap;
}
