.custom-mobile-nav-container {
        display: flex;
        flex-direction: column;
        background-color: #f9f9f9;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
   .custom-mobile-nav-single-item {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
        justify-content: space-between;
        padding: 5px;
        border-bottom: 1px solid #eee;
    }
   .custom-mobile-nav-icon {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
   .custom-mobile-nav-text {
        display: flex;
        flex-direction: column;
    }
   .custom-mobile-nav-title {
        font-size: 16px;
        font-weight: bold;
    }
   .custom-mobile-nav-desc {
        font-size: 12px;
    }
   .custom-mobile-nav-link {
        background-color: #007bff;
        color: white;
        border: none;
        text-decoration: none;
        margin-left: auto;
    }