body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

#game-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
}

#character {
    text-align: center;
    margin-bottom: 20px;
}

#character img {
    width: 200px;
    height: auto;
    margin: 5px;
}

#wardrobe {
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.category {
    margin-bottom: 20px;
}

.category h3 {
    margin-bottom: 10px;
}

.category img {
    width: 80px;
    height: auto;
    margin: 5px;
    cursor: pointer;
    border: 1px solid transparent;
}

.category img:hover {
    border-color: #007BFF;
}

#save-outfit {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#save-outfit:hover {
    background-color: #0056b3;
}

#saved-outfits {
    border-top: 1px solid #ccc;
    padding-top: 20px;
}