/* styles.css */

:root {
    --background-color: #ffffff;
    --box-shadow-color: rgba(0, 0, 0, 0.1);
    --data-box-background: #f4f4f4;
    --error-color: red;
    --text-color: #555;
    --green-text: green;
    --red-text: red;
    --black-text: black;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
}

.centered-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--box-shadow-color);
    margin: 20px 0;
}

.centered-box img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.data-box {
    font-size: 1.2rem;
    background-color: var(--data-box-background);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    width: 100%;
}

.message-box {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 10px;
}

.timestamp {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 10px;
}

.error {
    color: var(--error-color);
    font-weight: bold;
}

.green-text { color: var(--green-text); }
.red-text { color: var(--red-text); }
.black-text { color: var(--black-text); }
