body {
    font-family: 'Hachi Maru Ppo', cursive;
    margin: 20px;
    cursor: url('image/cursor1.png'), auto; 
    background-color: #d5eaf6;
}

h1 {
    text-align: center; 
}
.description {
    text-align: center; 
    margin-top: 2px;
}

a {
    cursor: url('image/cursor2.png'), auto; 
}

select {
    cursor: url('image/cursor2.png'), auto; 
    width: 300px; 
    max-width: 100%; 
}

input[type="text"], 
button {
    cursor: url('image/cursor2.png'), auto; 
}

input[type="date"], 
button {
    cursor: url('image/cursor2.png'), auto; 
}

.tile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tile {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    width: 100px;
    transition: border-color 0.3s;
    cursor: url('image/cursor2.png'), auto;
}

.tile.selected {
    border-color: #ffdbe0;
    background-color: #ffe9ec;
}

.tile img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    cursor: url('image/cursor2.png'), auto;
}

.submit-button {
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #088F8F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: url('image/cursor2.png'), auto;
}

.tw-hidden {
    display: none;
    height: 0; 
    visibility: hidden; 
    overflow: hidden; 
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

