body {
    font-family: sans-serif;
    background-color: #0a0c11;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 80%;
    max-width: 800px;
}

h1 {
    text-align: center;
    color: #333;
}

.status-message {
    background-color: #d4edda; /* Hellgrün */
    border: 1px solid #c3e6cb;
    color: #155724; /* Dunkelgrün */
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.status-message.error {
    background-color: #f8d7da; /* Hellrot */
    border: 1px solid #f5c6cb;
    color: #721c24; /* Dunkelrot */
}

#refresh-button {
    background-color: #4CAF50; /* Grün */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
}

#refresh-button:hover {
    background-color: #3e8e41;
}
