/* Удаление верхнего отступа */
body {
    padding-top: 0 !important;
}

.main-content {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* Максимально низкий z-index для мобильного футера */
.mobile-footer {
    z-index: -999 !important;
}

/* Максимально высокий z-index для мобильной навигации */
.mobile-nav {
    z-index: 9999 !important;
}

/* Для очень маленьких экранов */
@media only screen and (max-width: 480px) {
    .main-content {
        padding-top: 70px !important;
    }
}

/* Для планшетов */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .main-content {
        padding-top: 60px !important;
    }
}

/* Для ландшафтных мобильных */
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .main-content {
        padding-top: 60px !important;
    }
} 