/* input(130,9): run-time error CSS1035: Expected colon, found '}' */
/* تنظیمات فونت */
@font-face {
    font-family: 'IRANSans';
    src: url('../Fonts/irsans.ttf?v=IFs5QFvt32Dfe2hZeeYjb29VeYA') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #f5f5f5;
    padding-bottom: 90px;
    font-family: 'IRANSans', Tahoma, sans-serif !important;
    margin: 0;
}

/* --- بخش برند (بالای صفحه) --- */
.brand-wrapper {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-logo {
    height: 120px; /* کمی کوچک‌تر برای فضای بیشتر */
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.08));
}

.brand-text {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #0d6efd;
    margin-top: 10px;
    letter-spacing: -1px;
}

/* --- نوار پایین (Bottom Navigation) --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    height: 65px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    padding: 0 8px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

    .bottom-nav .nav-item {
        text-align: center;
        text-decoration: none;
        color: #888;
        font-size: 0.70rem; /* فونت ریزتر برای جایگیری بهتر */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
    }

        .bottom-nav .nav-item i {
            font-size: 1.3rem;
            margin-bottom: 2px;
        }

/* دکمه اصلی وسط (Add) */
.nav-center-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-center-main {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: -30px; /* بالا آمدن دکمه */
    cursor: pointer;
}

/* منوی پاپ‌آپ کوچک */
.nav-center-menu {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    gap: 8px;
}

    .nav-center-menu.show {
        display: flex;
    }

    .nav-center-menu .action-btn {
        border: none;
        border-radius: 999px;
        padding: 6px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: #ffffff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        font-size: 0.8rem;
    }

        .nav-center-menu .action-btn i {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            main-logo
        }

/* سایر استایل‌ها */
.logout-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-content {
    padding-bottom: 80px;
}
