@charset "UTF-8";

body {
    background-color: #ececec; 
    color: #333; 
}

.music-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.music-box {
    width: 32%; 
    margin-bottom: 20px;
    border: 1px solid #ccc; 
    padding: 10px;
    box-sizing: border-box;
    background-color: #fdfbfb; 
    border-radius: 10px;
}

.custom-text {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333; 
    text-align: center;
    font-weight: bold;
}
.aplayer .aplayer-list {
    max-height: 500px !important;
    overflow-y: auto;
}
.aplayer .aplayer-list ol {
    max-height: 500px !important;
    overflow-y: auto;
}
.custom-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (max-width: 1200px) {
    .music-box {
        width: 33.3%; 
    }
}

@media (max-width: 1000px) {
    .music-box {
        width: 49.9%; 
    }
}

@media (max-width: 700px) {
    .music-box {
        width: 100%; 
    }
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #f7fff575;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #0c0c0c4d;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #5d5d5d;
}

.footer {
    font-size: 0.85rem;
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px;
    box-sizing: border-box;
    background-color: #fdfbfb;
    border-radius: 10px;
    text-align: center; 
}
.header {
    font-size: 0.85rem;
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px;
    box-sizing: border-box;
    background-color: #fdfbfb;
    border-radius: 10px;
    text-align: center; 
    margin-bottom: 20px;
}
a {
    text-decoration: none; 
    color: inherit; 
}
