/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#search-container {
    text-align: center;
    margin-top: 20px;
}

#search-input {
    width: 50%;
    padding: 10px;
    font-size: 16px;
}

#results-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
}
#video-iframe{
    margin-top:100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.result-item {
    cursor: pointer;
    width: calc(10% - 10px); /* 5 items per row, minus gap */
    text-align: center;
}

.result-item img {
    width: 100%;
    height: auto;
}
.episode-item,.season-item{
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    user-select: none;
    text-align: center;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    height: 32px;
    min-width: max-content;
    color: rgb(255, 255, 255);
    background-color: rgb(31, 136, 61);
    box-shadow: rgba(31, 35, 40, 0.1) 0px 1px 0px;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    border-color: rgba(31, 35, 40, 0.15);
    text-decoration: none;
    padding: 0px 12px;
    gap: 8px;
    transition: color 80ms cubic-bezier(0.65, 0, 0.35, 1) 0s, fill, background-color, border-color;
}
/* 其他样式... */



/* 其他样式... */

