
        .tasbih-container-box {
            display: flex;
            align-items: stretch;
            gap: 15px;
            min-height: 300px; /* উচ্চতা ফিক্সড না রেখে মিনিমাম রাখা হয়েছে */
            margin-top: 10px;
        }

        .tasbih-left {
            flex: 1.2;
            background: #f8fcf9;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 1px solid #e0eadd;
            padding: 15px;
        }

        .tasbih-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-height: 300px; /* স্ক্রল নিশ্চিত করতে ম্যাক্স হাইট জরুরি */
        }

        .tasbih-list-scroll {
            flex: 1;
            overflow-y: auto;
            padding-right: 5px;
            -webkit-overflow-scrolling: touch; /* মোবাইলে স্মুথ স্ক্রলিং */
        }

        .tasbih-opt {
            background: #fff;
            padding: 10px;
            margin-bottom: 5px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            text-align: center;
            border: 1px solid #eee;
            transition: 0.3s;
        }

        .tasbih-opt:hover { background: #1e5128; color: white; }

        .tasbih-input-fixed {
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding-top: 8px;
            border-top: 1px solid #eee;
            background: white;
        }

        .tasbih-input-fixed input {
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 12px;
        }

        .display-num { font-size: 45px; color: #1e5128; font-weight: bold; margin: 0; }
        .phrase-text { font-size: 16px; color: #555; margin: 5px 0 15px 0; font-weight: bold; }
        
        .remaining-text { font-size: 12px; color: #d9534f; margin-bottom: 8px; font-weight: bold; visibility: hidden; }

        .btn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
        .c-btn { background: #1e5128; color: white; border: none; padding: 12px; border-radius: 5px; cursor: pointer; font-size: 13px; }
        .r-btn { background: #666; color: white; border: none; padding: 12px; border-radius: 5px; cursor: pointer; font-size: 13px; }
        .auto-btn { background: #f39c12; color: white; border: none; padding: 12px; border-radius: 5px; cursor: pointer; font-size: 13px; grid-column: span 2; }
        .target-btn { background: #2980b9; color: white; border: none; padding: 12px; border-radius: 5px; cursor: pointer; font-size: 13px; grid-column: span 2; }

        .tasbih-list-scroll::-webkit-scrollbar { width: 4px; }
        .tasbih-list-scroll::-webkit-scrollbar-thumb { background: #1e5128; border-radius: 10px; }

        /* মোবাইল ডিভাইসের জন্য লেআউট ঠিক করা */
        @media (max-width: 600px) {
            .tasbih-container-box { 
                flex-direction: column; 
                height: auto;
            }
            .tasbih-right {
                max-height: 250px; /* মোবাইলে লিস্টের উচ্চতা কিছুটা কমানো হয়েছে */
            }
            .page-content { margin-top: 100px; padding: 15px; }
        }

        .page-content { margin-top: 130px; padding: 20px 5%; }

        .islamic-hero {
            background: linear-gradient(rgba(30, 81, 40, 0.8), rgba(30, 81, 40, 0.8)), 
                        url('https://images.unsplash.com/photo-1542810634-71277d95dcbb?q=80&w=1000') center/cover;
            border-radius: 15px; display: flex; align-items: center; justify-content: center; color: white; text-align: center; margin-bottom: 25px;
        }

        .islamic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
        .islamic-card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 4px solid #1e5128; }

        .table-container { max-height: 250px; overflow-y: auto; margin-top: 15px; }
        table { width: 100%; border-collapse: collapse; text-align: left; }
        th { background: #f8fcf9; color: #1e5128; padding: 10px; font-size: 14px; border-bottom: 2px solid #eee; }
        td { padding: 10px; border-bottom: 1px solid #f1f1f1; font-size: 15px; }
        td a { color: #333; text-decoration: none; display: block; }
        td a:hover { color: #1e5128; font-weight: bold; }

        .prayer-times .time-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #eee; }

        @media (max-width: 350px) {
            .islamic-grid { grid-template-columns: 1fr; }
        }