.playground-list-box {
    background-color: #ffffff;
    border-radius: 15px;
    min-height: 30vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: scroll;
}

.playground-list-box::-webkit-scrollbar {
    width: 8px;
}

.playground-list-box::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.playground-list-box::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
}

.p-list-item {
    width: 95%;
    background-color: #ffffff;
    margin: 20px;
    border-radius: 15px;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}

.s-i-floor-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 60px;
}

.s-i-floor-1 img {
    aspect-ratio: 1 / 1;
    height: 80%;
    padding: 30px;
    border-radius: 40px;
}

.s-i-floor-1 h3 {
    padding: 30px;
}

.s-i-floor-1 h1 {
    margin-left: auto;
    padding: 30px;
}

.p-info-list {
    display: none;
    width: 100%;
    flex-direction: column;
}

.p-info-item {
    padding: 20px 10px 20px 20px;
    margin-right: auto;
    display: flex;
    width: 100%;
}

.p-info-item span {
    flex: 1;
    display: flex;
}

.p-info-item a {
    flex: 1;
    text-decoration: none;
    color: deepskyblue;
}

.p-info-item i {
    flex: 1;
    margin-right: auto;
}

.p-list-item.show-info-list .p-info-list {
    display: flex;
}

.links-box {
    display: flex;       /* 啟用 Flexbox */
    flex-wrap: wrap;    /* 允許項目換行 */
    gap: 50px;
}

.links-box .rectangle-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    height: 100px;
}

.links-box .rectangle-links .img-box {
    max-height: 80px;
    background-color: rgb(0, 0, 0);
    border-radius: 15%;
}

.links-box .rectangle-links img {
    max-height: 100%;
    aspect-ratio: 1 / 1;
}
