* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    margin: 0;
    padding: 0;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: #ffffff;
    width: 700px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

select {
    width: auto;
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select:focus {
    border-color: #00ff3c;
    /* box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2); */
}

.image-container {
    margin-top: 20px;
    width: 400px;
    height: 400px;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    /* background-color: #fafafa; */
    border-radius: 10px;
    border: 1px dashed #ddd;
}

#characterImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
}
