      .audio-playlist-container {
            background: #fffaf0; /* بيج فاتح */
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            max-width: 1100px;
            margin: auto;
        }

        .audio-item {
            background: white;
            border: 1px solid #8b5e3b; /* بني */
            padding: 8px;
            margin-bottom: 8px;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 6px;
        }

        .audio-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
        }

        .audio-title {
            font-size: 16px;
            font-weight: bold;
            color: #5e3d1e;
        }

        .audio-meta-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            font-size: 14px;
            color: #8b5e3b;
            flex-wrap: wrap;
        }

        .audio-actions {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .audio-btn {
            background: none;
            border: 1px solid #8b5e3b !important;
            color: #8b5e3b;
            padding: 6px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease-in-out;
        }

        .audio-btn:hover {
            background: #8b5e3b !important;
            color: white;
        }

        .audio-play-button {
            width: 100%;
            background: #8b5e3b !important;
            color: white;
            padding: 10px;
            border-radius: 6px;
            text-align: center;
            font-size: 16px;
            cursor: pointer;
            border: none;
            transition: background 0.3s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .audio-play-button i {
            font-size: 18px;
        }

        .audio-play-button:hover {
            background: #5e3d1e !important;
        }

        .audio-more {
            text-align: center;
            margin-top: 10px;
        }

        .audio-more-btn {
            background: #8b5e3b;
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            text-decoration: none;
            transition: background 0.3s ease-in-out;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        
        
        
        
        
        
        .loadMoreBtn {
    display: block; /* جعل الزر يأخذ سطرًا منفصلًا */
    margin: 20px auto; /* توسيط الزر أفقيًا */
    text-align: center; /* محاذاة النص داخل الزر */
    padding: 10px 20px; /* تحسين المسافات الداخلية */
    background-color: #8b5e3b; /* لون الخلفية */
    color: white; /* لون النص */
    border: none; /* إزالة الحدود */
    border-radius: 6px; /* تدوير الزوايا */
    cursor: pointer; /* تغيير المؤشر عند التمرير */
    font-size: 16px; /* تحسين حجم النص */
    transition: background 0.3s ease-in-out;
}

.loadMoreBtn:hover {
    background-color: #5e3d1e; /* لون مختلف عند التمرير */
}



.tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2px;
}

.tab-button {
    background: #8b5e3b !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: background 0.3s ease-in-out;
}

.tab-button.active {
    background: #5e3d1e !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}




        @media (max-width: 600px) {
            .audio-meta-container {
                flex-direction: row; /* جعل البيانات على خط واحد في الهواتف */
                flex-wrap: nowrap;
                gap: 8px;
                justify-content: center;
                text-align: center;
                overflow: auto;
                white-space: nowrap;
            }
        }