* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;

    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}



/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 420px;
    width: 100%;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    padding: 4px 12px;
}

.nav-item.active {
    color: #38bdf8;
}

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

.nav-item span {
    font-size: 10px;
    font-weight: 500;
}

.nav-item:active {
    transform: scale(0.9);
}
/* Bottom Navigation */


