/* BASIC css start */
/*채널톡 가리기*/
div#ch-plugin {display:none !important;}

body {
            margin: 0;
            background: #2c2c2c;
            color: #fff;
            font-family: 'Segoe UI', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            height: 100%;
            padding: 20px;
            overflow:hidden;
        }
        #player-box {
            background: #3d3d3d;
            padding: 15px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            text-align: center;
            width: 100%;
            max-width: 450px;
        }
        .thumb-title {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 10px;
        }
        #current-thumb {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
        }
        #current-track {
            font-size: 18px;
            font-weight: bold;
            text-align: left;
        }
        canvas {
            width: 100%;
            height: 50px;
            background: #111;
            border-radius: 8px;
            margin: 10px 0;
        }
        .controls {
            display: flex;
            justify-content: space-around;
            margin: 10px 0;
            align-items: center;
        }
        button {
            background: none;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        button:hover {
            color: #4caf50;
            transform: scale(1.2);
        }
        .bar-container {
            width: 100%;
            margin: 10px 0;
        }
        .bar {
            width: 100%;
        }
        #track-list {
            margin-top: 15px;
            max-height: 150px;
            overflow-y: auto;
            text-align: left;
            width: 100%;
        }
        #track-list div {
            padding: 5px;
            cursor: pointer;
            border-bottom: 1px solid #444;
        }
        #track-list div:hover {
            background: #4caf50;
        }
        .active-track {
            font-weight: bold;
            color: #ffcc00;
            background: #444;
        }
        @media (max-width: 480px) {
            #current-track {
                font-size: 16px;
            }
            button {
                font-size: 20px;
            }
        }
/* BASIC css end */

