/*
* Color table
* Green: #8BBBC9;
* Gray: #707070;
*/

.src-header {
    color: #8bbbc9;
    font-weight: bold;
    font-size: 2em;
    text-align: center;
}

.src-subtitle {
    color: #a8ccd6;
    padding-top: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

.list-unstyled {
    padding-left: 2em;
    list-style: none;
}

.src-item {
    line-height: 2em;
    font-size: 1.4em;
    font-weight: 600;
    color: #707070;
}

.src-item a:link {
    text-decoration: none;
}

.src-item a:hover {
    text-decoration: underline;
}

/***   source_books ***/
#book-list .src-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.book-link {
    display: inline-block;
    max-width: 70%; /* Adjust width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.book-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.book-author {
    font-size: 0.9rem;
    color: #6c757d;
    flex-shrink: 0;
}

/***  source_songs ***/
.song-src-content {
    padding-left: 5em;
}

.song-lyrics {
    padding-top: 10px;
    font-size: 0.8em;
    font-weight: normal;
    line-height: 1.4em;
    white-space: pre-wrap;
}

.song-others {
    padding-top: 1em;
    font-size: 1.5em;
    font-weight: bold;
    text-align: right;
}

.song-others a:link {
    color: #a8ccd6;
}

.others-link-img {
    height: 25px;
}

/** toys **/

.toyc-bk {
    background: #8bbbc9;
    padding: 2em;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.toy-img {
    width: 80%;
    height: auto;
}

.toy-desc {
    text-align: center;
    font-size: 24px;
    font-family: "GenSenRegular";
}

.toy-sub {
    font-family: "GenSenBold";
    letter-spacing: 3px;
    display: block;
    font-size: 2em;
}
.fill-avail {
    width: 100%;
}

.toy-cate a {
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: 3px;
}
.toy-item {
    align-items: center;
}
.toy-banner {
    font-size: 3em;
    padding-top: 2em;
}

.toy-cate-btn {
    margin: 10px;
    outline: none;
    background: transparent;
    border-radius: 35px;
    border-style: solid;
    padding: 0 20px;
    border-color: white;
    color: white;
}

.toy-item-subtitle {
    width: 100%;

    font-size: 24px;
    font-weight: bolder;
    font-family: "GenSenBold";
    color: #8bbbc9;
}

.toy-divider {
    border: 0;
    display: block;
    width: 90%;
    background-color: #707070;
    height: 1px;
}

.cate-header {
    align-items: center;
    padding-bottom: 20px;
    letter-spacing: 3px;
}
.cate-header-txt {
    color: white;
    padding-right: 20px;
    font-size: 1.5em;
}

.toy-star-desc {
    align-items: center;
    margin: 4em;
    margin-bottom: 0;
    background-image: url(/images/toys/starDescOutside.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 2em;
    padding-bottom: 3em;
}

.toy-star {
    margin: 3em;
}
.star-desc {
    font-size: 20px;
}

.hover-desc {
    background-color: hsla(0, 0%, 100%, 0.8);
    padding: 10px 20px;
    margin-left: 30px;
    display: none;
    position: absolute;
    color: #8bbbc9;
    font-size: 0.8em;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175) !important;
}

#cate-item:hover > span {
    display: block;
}

/* Adjusting for smaller screens */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }

    .book-link {
        max-width: 60%;
    }

    .src-item {
        flex-direction: column;
    }

    .book-author {
        margin-top: 4px;
    }
}
