.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: sans-serif;
    text-align: center;
}

.image-container {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.response-container {
    margin-top: 20px;
    text-align: left;
    white-space: pre-wrap; /* Keep newlines, spaces, etc. */
}
.image-container img {
    max-width: 100%;
    max-height: 400px;
    border: 1px solid #ddd;
    display: block;
    margin: auto;
}
pre {
    white-space: pre-wrap; /* Keep newlines */
    overflow-x: auto;
    border: 1px solid #eee;
    padding: 10px;
    background-color: #f9f9f9;
}
#errorContainer {
    color: red;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

#successContainer {
    color: green;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

#loading {
    text-align: center;
    margin-top: 20px;
}
