/* Her şeyi sıfırla */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Sayfayı tam ekran yap ve o hayalet menü boşluğunu sil */
.page {
    display: block !important;
}

main {
    width: 100% !important;
}

.content {
    padding: 0 !important;
}

/* Üstteki gri barı gizle */
.top-row {
    display: none !important;
}

/* Kutuların dışarı taşmasını engeller */
input, textarea, select {
    box-sizing: border-box !important;
    max-width: 100% !important;
}

html, body {
    /* Mobilde sert çekince sayfanın yaylanmasını kapatır */
    overscroll-behavior-y: none; 
}

body {
    /* Telefon ekranının dinamik boyunu (adres çubuğu hariç) baz alır */
    height: 100dvh; 
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
