body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* screen မလျှောစေရန် */
    background-color: #f4f4f4;
}

/* iframe ကို နေရာချခြင်း */
.content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 70px); /* Nav bar ဖယ်ပြီး ကျန်တာအပြည့်ယူ */
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Nav Bar Styling */
.nav-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    width: 25%;
    transition: all 0.3s ease;
}

.nav-item i {
    font-size: 20px;
}

.nav-item .text {
    font-size: 11px;
    margin-top: 4px;
}

/* နှိပ်လိုက်ရင် အပေါ်ကြွတက်မည့်အပိုင်း */
.nav-item.active {
    color: #009688;
    transform: translateY(-12px);
}

.nav-item.active i {
    background: #009688;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 150, 136, 0.3);
}
* {
  box-sizing: border-box;
}



.main-content {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body {
  overscroll-behavior-y: contain;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* အပြင်ဘက် scroll ကို အသေပိတ် */
    position: fixed;
    touch-action: none; /* Mobile browser ဆွဲလို့မရအောင် ပိတ်တာ */
}

.content-wrapper {
    width: 100%;
    height: calc(100% - 70px); /* nav-bar စာဖယ်ပြီး ကျန်တာ iframe ပေးမယ် */
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
