body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
}

h1 {
    text-align: center;
    color: #333;
}

.card {
    flex-direction: row;
    width: calc(500px/1.5);
    height: calc(700px/1.5);
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('https://via.placeholder.com/300x450');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0.5em;
}

.controls {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 20px; */
    flex-direction: column;
    gap: 1em;
    align-items: center;
}

select, button {
    padding: 8px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

#promptUsed {
    visibility: hidden;
    /* display: none; */
    font-size: 12px;
    color: #666;
}

.value-wrapper{
    font-size: xx-large;
    display: flex;
    flex-direction: column;
}

.bottom {
    align-items: flex-end;
    rotate: 180deg;
}

.button-wrapper {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}