body {
    background-color: #f5f9fc;
    font-family: Arial, sans-serif;
    color: #1f2937;
}

.app-card {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.menu-card {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-3px);
}

.menu-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.bg-soft-primary {
    background-color: #eaf3ff;
}

.bg-soft-success {
    background-color: #e8fff4;
}

.bg-soft-warning {
    background-color: #fff7e6;
}

.bg-soft-danger {
    background-color: #ffecec;
}

.bg-soft-info {
    background-color: #eafaff;
}

.bg-soft-secondary {
    background-color: #f0f2f5;
}

.content-wrapper {
    padding-bottom: 90px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    z-index: 999;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
}

/* .bottom-nav a {
    width: 20%;
    font-size: 11px;
    color: #6c757d;
    text-decoration: none;
}

.bottom-nav a.active {
    color: #0d6efd;
    font-weight: bold;
}

.bottom-nav .nav-icon {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 2px;
} */

.bottom-nav a {
    width: 20%;
    font-size: 11px;
    color: #6c757d;
    text-decoration: none;
    padding: 6px 0;
    border-radius: 14px;
}

.bottom-nav a.active {
    color: #0d6efd;
    font-weight: bold;
}

.bottom-nav a.active .nav-icon {
    background: #eaf3ff;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}


@media (min-width: 768px) {
    .bottom-nav {
        display: none;
    }

    .content-wrapper {
        padding-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 17px;
    }

    .card-body {
        padding: 16px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 17px;
    }

    .menu-card p {
        font-size: 12px;
    }
}