body {
    -webkit-font-smoothing: antialiased;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.mobile-bottom-nav .nav-item {
    text-align: center;
    flex: 1;
}

.mobile-bottom-nav .nav-link {
    color: #6c757d;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.mobile-bottom-nav .nav-link i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-link.active {
    color: #198754;
}

.mobile-bottom-nav .action-btn {
    position: relative;
    top: -20px;
}

.mobile-bottom-nav .btn-action {
    background: #198754;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(25, 135, 84, 0.4);
    margin: 0 auto;
}

.mobile-bottom-nav .btn-action i {
    font-size: 24px;
    margin: 0;
}

/* Cards & Forms */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
}

.btn {
    border-radius: 10px;
    padding: 10px 15px;
}

/* Desktop overrides */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
    body {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
}
