.container-q {
            width: 100%;
            max-width: 600px;
            
            border-radius: 15px;
            
            overflow: hidden;
        }
        
        .header-q {
            background: #4ca1af;
            color: white;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
.header-q h3 {
	color: white;
}
        
.footer-q {
            background: #9cef8c;
            color: white;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
.footer-q h3 {
	color: white;
}
        .surah-list {
            height: 90vh;
					max-height: 500px;
            overflow-y: auto;
            padding: 4px;
					background-color: #f7f8f9;
        }
        
        /* Custom scrollbar */
        .surah-list::-webkit-scrollbar {
            width: 8px;
        }
        
        .surah-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .surah-list::-webkit-scrollbar-thumb {
            background: #6a11cb;
            border-radius: 10px;
        }
        
        .surah-list::-webkit-scrollbar-thumb:hover {
            background: #2575fc;
        }
        
        .surah-name {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            width: 100%;
            text-align: left;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .surah-name:hover {
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }
        
        .surah-actions {
            display: flex;
            gap: 8px;
        }
        
        .audio-btn, .read-btn {
            padding: 6px 12px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s ease;
            font-size: 0.8rem;
        }
        
        .audio-btn {
            background: linear-gradient(135deg, #5cb0bf, #3a5f73);
            color: white;
        }
        
        .audio-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .read-btn {
            background: linear-gradient(135deg, #28a745, #219f15);
            color: white;
        }
        
        .read-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        
        .audio-player {
            display: none;
            width: 100%;
            margin-top: 10px;
        }
        
        @media (max-width: 500px) {
            .surah-btn {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .surah-actions {
                margin-top: 10px;
                align-self: flex-end;
            }
        }