body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #113f67;
}

.container {
    width: 80%; /* Adjust the width as needed */
    text-align: center;
	padding: 20px;
    background-color: #a2a8d3;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#episodeImage img {
    max-width: 100%; /* Ensure the image doesn't exceed its container's width */
    height: auto; /* Maintain the aspect ratio of the image */
    display: block; /* Ensure the image is centered horizontally */
    margin: 0 auto; /* Center the image horizontally */
    margin-bottom: 10px;
}

#guessForm {
    margin-bottom: 20px;
}

#resultMessage {
    font-weight: bold;
    color: green;
}

#buttons {
    margin: 10px 0;
}

#buttons button {
    width: 50px;
	margin-right: 10px;
}

#guessButton {
    margin-bottom: 5px; /* Adjust the margin for the guess button */
	width: 100px;
}

#skipButton {
    margin-bottom: 5px;/* Adjust the margin for the skip button */
	width: 100px;
}

#reloadButton {
    margin-bottom: 5px;/* Adjust the margin for the reload button */
	width: 100px;
}

#episodeDropdown {
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    width: calc(90% - 200px); /* Same width as image with padding */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    z-index: 1;
}

#episodeDropdown div {
    padding: 10px;
    cursor: pointer;
}

#episodeDropdown div:hover {
    background-color: #ddd;
}

#userGuess {
    width: calc(100% - 100px); /* Adjust the width as needed */
}