.app-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    min-height: 100vh;
}

.app-content {
    flex: 1;
    padding: 0px;
    overflow-y: auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.radio-nominale {
    color: white;
    display: none;
    margin: 10px;
    cursor: pointer;
}

.radio-nominale+label {
    text-align: center;
    color: #fff !important;
    display: inline-block;
    padding: 13px;
    background-color: none;
    border: 2px solid #2D27FF !important;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-size: 10px;
}

.radio-nominale:checked+label {
    text-align: center;
    background-image: none;
    background-color: #2D27FF !important;
    color: #fff !important;
    border: 2px solid #2D27FF !important;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-size: 10px;
}

.form-control {
    border: 0!important;
}

.produkLevel {
    display: block;
    margin: 0 auto;
    width: 65px;
    height: 65px;
}
.hTugas {
    height: 80.5px;
}

.bdTugas {
    border: 2px solid #fbdde1;
}

/* Footer Mobile Styles */
.mobile-footer {
    background: #fafafa;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    height: auto;
    width: 100%;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #94a3b8;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 16px;
    flex: 1;
    max-width: 80px;
}

.nav-item.active {
    color: #F12537;
    transform: translateY(-10px);
}

.nav-item:hover {
    color: #F12537;
}

.nav-item.active .nav-icon {
    background: linear-gradient(135deg, #00FF5B, #0014FF);
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.4);
}

.nav-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.8);
    margin-bottom: 6px;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.nav-item:not(.active):hover .nav-icon {
    background: linear-gradient(135deg, #00FF5B, #0014FF);
    color: #fff;
    transform: scale(1.05);
}

.nav-label {
    font-size: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.active-indicator {
    position: absolute;
    top: -5px;
    width: 5px;
    height: 5px;
    background: #60a5fa;
    border-radius: 50%;
}

.center-nav-item {
    position: relative;
    margin-top: -25px;
}

.center-nav-item .nav-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00FF5B, #0014FF);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.5);
    color: white;
    font-size: 1.6rem;
}

.center-nav-item .nav-label {
    margin-top: 5px;
}


/* Responsive adjustments */
@media (max-width: 360px) {
    .produkLevel {
        display: block;
        margin: 0 auto;
        width: auto;
        height: 100%;
        max-height: 38px;
    }

    .hTugas {
        height: 53.5px;
    }
}
@media (max-width: 480px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-footer {
        background: #fafafa;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
        height: 70px;
        width: 100%;
    }

    .nav-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .center-nav-item .nav-icon {
        width: 60px;
        height: 60px;
    }

    .nav-label {
        font-size: 0.55rem;
        line-height: 12px;
        text-align: center;
        margin-top: 5px;
    }
}

@media (min-width: 768px) {
    .app-container {
        max-width: 500px;
        margin: 0 auto;
        border-left: 1px solid #E2E2E2;
        border-right: 1px solid #E2E2E2;
        min-height: 100vh;
    }
}