/* ОБНУЛЕННЯ СТИЛІВ ДЛЯ ТОЧНОСТІ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ШАПКА САЙТУ (HEADER) */
.header {
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

/* Профіль у лівому верхньому кутку */
.profile-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.profile-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
}

/* 3 полоски (меню) у правому верхньому кутку */
.menu-burger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-burger span {
    height: 3px;
    width: 100%;
    border-radius: 2px;
}

/* ОСНОВНИЙ КОНТЕНТ ФОРУМУ */
.main-content {
    margin-top: 60px; /* Відступ, щоб шапка не перекривала контент */
    margin-bottom: 70px; /* Відступ, щоб нижні кнопки не перекривали контент */
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.forum-card {
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* НИЖНЯ ПАНЕЛЬ НАВІГАЦІЇ (BOTTOM NAV) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    padding: 0 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 4px;
    flex: 1;
}

/* Іконка всередині кнопки */
.nav-icon {
    font-size: 20px;
}

/* Підпис під іконкою (яка кнопка куди веде) */
.nav-label {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}
