/* 
 * SPECIFIC SUBMENU PADDING FIX
 * CSS tambahan untuk memastikan padding konsisten di semua menu item
 */

@media screen and (min-width: 769px) {
    /* Spesifik untuk menu Website Development */
    .dropdown-menu li:nth-child(5) a {
        padding: 0.75rem 1.5rem !important;
        margin: 0.1rem 0 !important;
    }
    
    /* Pastikan icon dan text berada pada posisi yang sama untuk semua menu item */
    .dropdown-menu li a .menu-item-container {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Konsistensi spacing icon */
    .dropdown-menu li a .menu-item-container .menu-icon {
        margin-right: 0.75rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 1.5em !important;
    }
    
    /* Text alignment dan konsistensi */
    .dropdown-menu li a .menu-item-container .menu-text {
        flex-grow: 1 !important;
    }
    
    /* Spesifik perbaikan untuk item kelima */
    .dropdown-menu li.fifth-menu-item a,
    .dropdown-menu li:nth-child(5) a {
        display: flex !important;
        align-items: center !important;
        padding: 0.75rem 1.5rem !important;
    }
    
    /* Memastikan tidak ada padding tambahan yang tak terlihat */
    .dropdown-menu li:nth-child(5) a .menu-item-container {
        margin: 0 !important;
        padding: 0 !important;
    }
}
