/*.AudioLibraryControl .AudioFile {   padding: 5px 0 0 0;   float:right;}

.AudioLibraryControl .AudioFile span { cursor: pointer; color: #a94e00;  font-size: small;  }

.AudioLibraryControl .Content {
    clear:both;
}
.AudioLibraryControl .Content .LibraryTitle{
    font-size:medium;
    color:#002809;
    font-weight:bold;
}
.AudioLibraryControl .Content .LibraryDescription{
    font-size:small;
    color:#002809;
}*/

/* 1. Định dạng tổng thể hộp chứa */
        .UIAudioLibrary_default {
            font-family: 'Segoe UI', Arial, sans-serif;
            max-width: 1000px; /* Giới hạn chiều rộng để trình phát gọn gàng */
            margin: 30px auto;
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            overflow: hidden; /* Cắt phần góc nhọn thừa */
        }

        .AudioLibraryControl {
            /* Không gian bên trong */
        }

        /* 2. Định dạng phần Tiêu đề */
        .AudioLibraryControl .Title {
            background-color: #da251d;
            padding: 15px 20px;
            border-bottom: 3px solid #da251d;
        }

        .AudioLibraryControl .Title a.more {
            text-decoration: none;
            color: #ffffff;
            font-size: 18px;
            font-weight: bold;
            display: block;
        }

        .AudioLibraryControl .Title a.more:hover {
            text-decoration: underline;
        }

        /* 3. Định dạng Trình phát (Audio Player) */
        .AudioPlayer {
            padding: 20px;
            background-color: #f8f9fa;
        }

        .AudioPlayer p {
            /* Ép thẻ <p> bỏ qua width: 844px; trong HTML gốc để co giãn responsive */
            max-width: 100% !important; 
            width: auto !important;
            margin: 0 0 15px 0 !important;
            padding: 0 !important;
            color: #333;
            font-weight: bold;
            text-indent: 0 !important; 
            text-align: center;
        }

        .AudioPlayer audio {
            width: 100%; /* Trình phát dài hết cỡ theo hộp chứa */
            outline: none;
        }

        /* 4. Định dạng Danh sách bài hát */
        .ListFile {
            padding: 0 20px 20px 20px;
        }

        .WrapSim {
            width: 100%;
        }

        .tblSimList {
            width: 100%;
            border-collapse: collapse;
        }

        .tblSimList td {
            padding: 12px 10px;
            border-bottom: 1px solid #eeeeee;
            display: flex;
            align-items: center;
            transition: background-color 0.2s;
            border-radius: 4px;
        }

        .tblSimList td:hover {
            background-color: #f1f8ff; /* Đổi màu xanh nhạt khi di chuột */
        }

        /* 5. Tạo icon Nút Play từ thẻ span.thumb trống */
        .tblSimList .thumb {
            display: inline-block;
            width: 24px;
            height: 24px;
            background-color: #0056b3;
            border-radius: 50%; /* Bo tròn thành hình tròn */
            margin-right: 12px;
            position: relative;
            flex-shrink: 0;
        }

        /* Vẽ hình tam giác màu trắng ở giữa hình tròn */
        .tblSimList .thumb::after {
            content: '';
            position: absolute;
            top: 7px;
            left: 10px;
            border-left: 6px solid white;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }

        /* Định dạng link bài hát */
        .tblSimList a {
            text-decoration: none;
            color: #444;
            font-size: 15px;
            line-height: 1.4;
            flex-grow: 1;
        }

        .tblSimList a:hover {
            color: #0056b3;
            font-weight: bold;
        }
